Commit 087f90e8 authored by bescoto's avatar bescoto

Added EDEADLOCK to skippable errors


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@307 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 3d6e3daf
......@@ -53,7 +53,7 @@ def catch_error(exc):
errno.errorcode[exc[0]] in ('EPERM', 'ENOENT', 'EACCES', 'EBUSY',
'EEXIST', 'ENOTDIR', 'ENAMETOOLONG',
'EINTR', 'ENOTEMPTY', 'EIO', 'ETXTBSY',
'ESRCH', 'EINVAL'))):
'ESRCH', 'EINVAL', 'EDEADLOCK'))):
return 1
return 0
......
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