Skip to content

Commit 2f7f936

Browse files
authored
feat(core): inform users about push in renku save (#3194)
1 parent bb50f86 commit 2f7f936

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

renku/ui/cli/save.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ def save(message, destination, paths):
119119
)
120120

121121
if saved_paths:
122-
click.echo("Successfully saved to remote branch {}: \n\t{}".format(branch, "\n\t".join(saved_paths)))
122+
paths_str = "\n\t".join(saved_paths)
123+
click.echo(f"Successfully saved to remote branch {branch}: \n\t{paths_str}")
123124
else:
124-
click.echo("There were no changes to save.")
125+
click.echo(f"Successfully saved to remote branch {branch}.")
125126

126127
click.secho("OK", fg=color.GREEN)

0 commit comments

Comments
 (0)