Commit d62f77e8 authored by owsla's avatar owsla

Fix typo


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@844 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 13cc582d
......@@ -831,8 +831,8 @@ class RPath(RORPath):
"""Wrapper around os.chmod"""
try:
self.conn.os.chmod(self.path, permissions & Globals.permission_mask)
except OSError, exc:
if exc[0] == errno.EFTYPE and not self.isdir():
except OSError, e:
if e.errno == errno.EFTYPE and not self.isdir():
# Some systems throw this error if try to set sticky bit
# on a non-directory. Remove sticky bit and try again.
log.Log("Unable to set permissions of %s to %o - trying again"
......
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