summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-06 21:10:45 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-06 21:10:45 +0000
commita9098e5b7bd72a8feecd3c0d6a719a974388bca7 (patch)
treedfebc2fd608a42d5df5425a030fa0dcf311bdd22
parentcf1a3560bb656f65f328b90545f6deade943ae0a (diff)
downloadrdiff-backup-a9098e5b7bd72a8feecd3c0d6a719a974388bca7.tar.gz
Fix typo
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r1-2@1001 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/rdiff_backup/robust.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/robust.py b/rdiff-backup/rdiff_backup/robust.py
index 495cda3..c276b6b 100644
--- a/rdiff-backup/rdiff_backup/robust.py
+++ b/rdiff-backup/rdiff_backup/robust.py
@@ -74,7 +74,7 @@ def is_routine_fatal(exc):
return "Lost connection to the remote system"
elif isinstance(exc, SignalException):
return "Killed with signal %s" % (exc,)
- elif isinstance(exc, EnvironmentError) and e.errno == errno.ENOTCONN:
+ elif isinstance(exc, EnvironmentError) and exc.errno == errno.ENOTCONN:
return ("Filesystem reports connection failure:\n%s" % exc)
return None