summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-06 21:30:42 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-06 21:30:42 +0000
commit0dd433ffae8135ab3aff4d0a8514ca7b7699a04e (patch)
treeb614119fc8a49880b2b8dec6509f1d530406a500
parent4769871a78de83b0fc0117b2e87b4f8b3232e1c2 (diff)
downloadrdiff-backup-0dd433ffae8135ab3aff4d0a8514ca7b7699a04e.tar.gz
fix typo
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@1005 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