rdiff-backup-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Rdiff-backup-commits] rdiff-backup/rdiff_backup fs_abilities.py


From: Andrew Ferguson
Subject: [Rdiff-backup-commits] rdiff-backup/rdiff_backup fs_abilities.py
Date: Thu, 21 Aug 2008 00:25:38 +0000

CVSROOT:        /sources/rdiff-backup
Module name:    rdiff-backup
Changes by:     Andrew Ferguson <owsla> 08/08/21 00:25:38

Modified files:
        rdiff_backup   : fs_abilities.py 

Log message:
        Improve warning message in light of new Windows ACLs support

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/rdiff_backup/fs_abilities.py?cvsroot=rdiff-backup&r1=1.50&r2=1.51

Patches:
Index: fs_abilities.py
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/rdiff_backup/fs_abilities.py,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -b -r1.50 -r1.51
--- fs_abilities.py     20 Aug 2008 17:43:25 -0000      1.50
+++ fs_abilities.py     21 Aug 2008 00:25:36 -0000      1.51
@@ -269,14 +269,14 @@
                try: import posix1e
                except ImportError:
                        log.Log("Unable to import module posix1e from pylibacl "
-                                       "package.\nACLs not supported on 
filesystem at %s" %
+                                       "package.\nPOSIX ACLs not supported on 
filesystem at %s" %
                                        (rp.path,), 4)
                        self.acls = 0
                        return
 
                try: posix1e.ACL(file=rp.path)
                except IOError:
-                       log.Log("ACLs not supported by filesystem at %s" % 
(rp.path,), 4)
+                       log.Log("POSIX ACLs not supported by filesystem at %s" 
% (rp.path,), 4)
                        self.acls = 0
                else: self.acls = 1
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]