summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-02-14 17:09:16 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-02-14 17:09:16 -0600
commit9fecb003deaae2364e0d9d41055ca33a7d1a2131 (patch)
treefd63ebad25e2e136e6f026c66c9190c64fb7563a
parenta20a7fc689fd0e8680cbc13adfa6fdc2849e4397 (diff)
* Changed format of run_rsync debug output.
-rw-r--r--pato2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pato2.py b/pato2.py
index 55e63e7..13242f7 100644
--- a/pato2.py
+++ b/pato2.py
@@ -203,7 +203,7 @@ def run_rsync(base_for_rsync, dir_list_for_rsync=(repo_list + dir_list),
""" Runs rsync and gets returns it's output """
cmd = str(generate_rsync_command(base_for_rsync, (repo_list + dir_list)))
if debug:
- printf("rsync_command" + cmd)
+ printf("rsync_command: " + cmd)
return commands.getoutput(cmd)
if __name__ == "__main__":