summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rdiff-backup/rdiff_backup/rpath.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rdiff-backup/rdiff_backup/rpath.py b/rdiff-backup/rdiff_backup/rpath.py
index d6f3655..7b71ff1 100644
--- a/rdiff-backup/rdiff_backup/rpath.py
+++ b/rdiff-backup/rdiff_backup/rpath.py
@@ -836,9 +836,9 @@ class RPath(RORPath):
and not self.isdir():
# Some systems throw this error if try to set sticky bit
# on a non-directory. Remove sticky bit and try again.
- log.Log("Unable to set permissions of %s to %o - trying again"
- "without sticky bit (%o)" % (self.path, permissions,
- permissions & 06777), 2)
+ log.Log("Warning: Unable to set permissions of %s to %o - "
+ "trying again without sticky bit (%o)" % (self.path,
+ permissions, permissions & 06777), 2)
self.conn.os.chmod(self.path, permissions
& 06777 & Globals.permission_mask)
else: