diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-14 17:09:16 -0600 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-14 17:09:16 -0600 |
commit | 9fecb003deaae2364e0d9d41055ca33a7d1a2131 (patch) | |
tree | fd63ebad25e2e136e6f026c66c9190c64fb7563a /pato2.py | |
parent | a20a7fc689fd0e8680cbc13adfa6fdc2849e4397 (diff) |
* Changed format of run_rsync debug output.
Diffstat (limited to 'pato2.py')
-rw-r--r-- | pato2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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__": |