Skip to content

Commit c3e76ee

Browse files
committed
Fixed missing comma
1 parent f5166f1 commit c3e76ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/client/tui/screens.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ def on_button_pressed(self, event):
913913
f"{self.app._environment.url.hostname}::{visit_path}/processing/{secure_filename(self._dir_tree._gain_reference.name)}",
914914
]
915915
# Encase in bash shell
916-
cmd = ["bash", "-c" " ".join(rsync_cmd)]
916+
cmd = ["bash", "-c", " ".join(rsync_cmd)]
917917
if self.app._environment.demo:
918918
log.info(f"Would perform {' '.join(cmd)}")
919919
else:

0 commit comments

Comments
 (0)