summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/fs_abilities.py
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-03-25 23:14:58 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-03-25 23:14:58 +0000
commit327bb973694f3f4df68568a61c4f71469dce9058 (patch)
tree00ed6f8c6469eec0016fb5730fa6c63fdb0549ad /rdiff-backup/rdiff_backup/fs_abilities.py
parent11485e22137627864f6230c73317a9f9cc89bc3d (diff)
downloadrdiff-backup-327bb973694f3f4df68568a61c4f71469dce9058.tar.gz
Checked in Robert Shaw's --chars-to-quote patch
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@558 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/fs_abilities.py')
-rw-r--r--rdiff-backup/rdiff_backup/fs_abilities.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/rdiff-backup/rdiff_backup/fs_abilities.py b/rdiff-backup/rdiff_backup/fs_abilities.py
index d56e58d..612de03 100644
--- a/rdiff-backup/rdiff_backup/fs_abilities.py
+++ b/rdiff-backup/rdiff_backup/fs_abilities.py
@@ -174,7 +174,7 @@ class FSAbilities:
log.Log("Warning: File system no longer needs quoting, "
"but will retain for backwards compatibility.", 2)
self.chars_to_quote = old_chars
- else: log.FatalError("""New quoting requirements
+ else: log.Log.FatalError("""New quoting requirements
This may be caused when you copy an rdiff-backup directory from a
normal file system on to a windows one that cannot support the same
@@ -280,8 +280,7 @@ rdiff-backup-data/chars_to_quote.
try: posix1e.ACL(file=rp.path)
except IOError, exc:
- log.Log("ACLs appear not to be supported by "
- "filesystem at %s" % (rp.path,), 4)
+ log.Log("ACLs not supported by filesystem at %s" % (rp.path,), 4)
self.acls = 0
else: self.acls = 1
@@ -291,7 +290,7 @@ rdiff-backup-data/chars_to_quote.
assert rp.lstat()
try: import xattr
except ImportError:
- log.Log("Unable to import module xattr. EAs not "
+ log.Log("Unable to import module xattr.\nExtended attributes not "
"supported on filesystem at %s" % (rp.path,), 4)
self.eas = 0
return