Commit 8b379585 authored by owsla's avatar owsla

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@889 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent d4452e79
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment