diff options
author | ben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109> | 2002-05-30 23:33:17 +0000 |
---|---|---|
committer | ben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109> | 2002-05-30 23:33:17 +0000 |
commit | b3c458f96706b7a6ef570434c9c9adc7129912a4 (patch) | |
tree | 147d094408050f337c1ac9b752f61e3be7a23bda /rdiff-backup/src/statistics.py | |
parent | 316b6ac203137fc5740d1181c941aab1178eeaae (diff) | |
download | rdiff-backup-b3c458f96706b7a6ef570434c9c9adc7129912a4.tar.gz |
Bug fixes to resuming and error correction code
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@112 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/src/statistics.py')
-rw-r--r-- | rdiff-backup/src/statistics.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rdiff-backup/src/statistics.py b/rdiff-backup/src/statistics.py index c18f34a..7dff7a3 100644 --- a/rdiff-backup/src/statistics.py +++ b/rdiff-backup/src/statistics.py @@ -286,7 +286,8 @@ class Stats: "directory_statistics"), Time.curtime, suffix) if cls._dir_stats_rp.lstat(): - Log("Warning, statistics file %s already exists, appending", 2) + Log("Warning, statistics file %s already exists, appending" % + cls._dir_stats_rp.path, 2) cls._dir_stats_fp = cls._dir_stats_rp.open("ab", Globals.compression) else: cls._dir_stats_fp = \ |