Commit 11918af1 authored by owsla's avatar owsla

Fix typo


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@1001 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 5bcc91d4
...@@ -74,7 +74,7 @@ def is_routine_fatal(exc): ...@@ -74,7 +74,7 @@ def is_routine_fatal(exc):
return "Lost connection to the remote system" return "Lost connection to the remote system"
elif isinstance(exc, SignalException): elif isinstance(exc, SignalException):
return "Killed with signal %s" % (exc,) 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 ("Filesystem reports connection failure:\n%s" % exc)
return None return None
......
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