summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2008-06-11 19:33:00 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2008-06-11 19:33:00 +0000
commit634425a28ae4fa1111e0d42d2ff6397882ae9c3e (patch)
tree73f5bef517e9e25ab5578b23533411a872b45940
parentc6f37e80e19c8ed7a427e50284dc06d9a49c519d (diff)
downloadrdiff-backup-634425a28ae4fa1111e0d42d2ff6397882ae9c3e.tar.gz
Correct previous check-in (each filename should be quoted, not the list of
filenames) git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@889 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rwxr-xr-xrdiff-backup/rdiff-backup-statistics2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff-backup-statistics b/rdiff-backup/rdiff-backup-statistics
index 3419b8d..35d0fc1 100755
--- a/rdiff-backup/rdiff-backup-statistics
+++ b/rdiff-backup/rdiff-backup-statistics
@@ -98,7 +98,7 @@ class StatisticsRPaths:
def print_session_statistics(stat_rpaths):
print "Session statistics:"
system('rdiff-backup --calculate-average "' +
- " ".join([inc.path for inc in stat_rpaths.session_rps]) + '"')
+ '" "'.join([inc.path for inc in stat_rpaths.session_rps]) + '"')
class FileStatisticsTree: