summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-01-30 21:59:08 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-01-30 21:59:08 +0000
commit09eb29b0b50deef8bba24dcb0b534b59e24724fb (patch)
treec9c471ced0cb629f6fb2446e045e86d4b2491452
parentc9b64877b66d99ebe464fb3c397565561f4fac5d (diff)
downloadrdiff-backup-09eb29b0b50deef8bba24dcb0b534b59e24724fb.tar.gz
Typo correction from Dave Kempe
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@514 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/rdiff_backup/fs_abilities.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/fs_abilities.py b/rdiff-backup/rdiff_backup/fs_abilities.py
index 2fb314a..d372ea9 100644
--- a/rdiff-backup/rdiff_backup/fs_abilities.py
+++ b/rdiff-backup/rdiff_backup/fs_abilities.py
@@ -207,7 +207,7 @@ rdiff-backup-data/chars_to_quote.
try:
hl_dest.hardlink(hl_source.path)
if hl_source.getinode() != hl_dest.getinode():
- raise IOError(errno.EOPNOTSUP, "Hard links don't compare")
+ raise IOError(errno.EOPNOTSUPP, "Hard links don't compare")
except (IOError, OSError), exc:
if exc[0] in (errno.EOPNOTSUPP, errno.EPERM):
log.Log("Warning: hard linking not supported by filesystem "