Skip to content

Commit

Permalink
fix(core): fix bad flag in communication.confirm call (#2322)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius committed Sep 13, 2021
1 parent b6613f6 commit 9205db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renku/core/commands/remove.py
Expand Up @@ -82,7 +82,7 @@ def get_relative_path(path):
existing = client.find_attr(*tracked)
if existing:
communication.warn("There are custom .gitattributes.\n")
if communication.confirm('Do you want to edit ".gitattributes" now?', default=False):
if communication.confirm('Do you want to edit ".gitattributes" now?'):
edit_command(filename=str(client.path / ".gitattributes"))

# Finally remove the files.
Expand Down

0 comments on commit 9205db6

Please sign in to comment.