diff options
author | bescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109> | 2005-10-30 15:43:42 +0000 |
---|---|---|
committer | bescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109> | 2005-10-30 15:43:42 +0000 |
commit | a2705f514b471e2b74c98a0cde588863e3ff22c6 (patch) | |
tree | b344ee2f2a53682aa7904af7dfc8f0b9b5f4164e /rdiff-backup/rdiff_backup | |
parent | d9b68d73175d004caed8c781c97308f7c2e3dccc (diff) | |
download | rdiff-backup-a2705f514b471e2b74c98a0cde588863e3ff22c6.tar.gz |
Typo fix by Murali Vadivelu
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@663 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup')
-rw-r--r-- | rdiff-backup/rdiff_backup/fs_abilities.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rdiff-backup/rdiff_backup/fs_abilities.py b/rdiff-backup/rdiff_backup/fs_abilities.py index b078fbe..116388d 100644 --- a/rdiff-backup/rdiff_backup/fs_abilities.py +++ b/rdiff-backup/rdiff_backup/fs_abilities.py @@ -199,7 +199,8 @@ class FSAbilities: assert ord_rp.lstat() ord_rp.delete() - extended_filename = ':\\' + chr(175) + # Try a UTF-8 encoded character + extended_filename = ':\\ ' + chr(225) + chr(132) + chr(137) try: ext_rp = subdir.append(extended_filename) ext_rp.touch() @@ -423,8 +424,8 @@ class SetGlobals: self.update_triple(self.src_fsa.acls, self.dest_fsa.acls, ('acls_active', 'acls_write', 'acls_conn')) if Globals.never_drop_acls and not Globals.acls_active: - Log.FatalError("--never-drop-acls specified, but ACL support\n" - "missing from destination filesystem") + log.Log.FatalError("--never-drop-acls specified, but ACL support\n" + "missing from destination filesystem") def set_resource_forks(self): self.update_triple(self.src_fsa.resource_forks, |