summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2003-07-24 19:45:40 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2003-07-24 19:45:40 +0000
commit19b9baa0f464c0230a50c2ca1866750fc1d0d34e (patch)
tree53e3136e212494b404aa6ac7a17e8a1d0a94b2c1
parent9795da5e57f4ee432cfbe6d11ca636ad477d25ae (diff)
downloadrdiff-backup-19b9baa0f464c0230a50c2ca1866750fc1d0d34e.tar.gz
Update for door file problem
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@365 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/CHANGELOG3
-rw-r--r--rdiff-backup/rdiff_backup/log.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index bbe66f8..67c3424 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -6,6 +6,9 @@ Patch by Arkadiusz Patyk fixes building with Python 2.3c1.
Restore of archives made by 0.10.x and earlier fixed, although hard
link information is not restored. (Bug reported by Jeff Lessem.)
+Fixed problem with door files locally when repository is remote.
+(Reported by Robert Weber.)
+
New in v0.13.0 (2003/07/22)
---------------------------
diff --git a/rdiff-backup/rdiff_backup/log.py b/rdiff-backup/rdiff_backup/log.py
index 53126e5..7d4b9be 100644
--- a/rdiff-backup/rdiff_backup/log.py
+++ b/rdiff-backup/rdiff_backup/log.py
@@ -248,7 +248,7 @@ or within one second of each other. Wait a second and try again.""" %
"""Call cls.write(...) if error log open, only log otherwise"""
if not Globals.isbackup_writer:
return Globals.backup_writer.log.ErrorLog.write_if_open(
- error_type, rp, exc)
+ error_type, rp, str(exc)) # convert exc bc of exc picking prob
if cls.isopen(): cls.write(error_type, rp, exc)
else: Log(cls.get_log_string(error_type, rp, exc), 2)