summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-08-17 04:11:23 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-08-17 04:11:23 +0000
commitf2151c1e13337493246f9e61c604d95e97c70442 (patch)
tree1a469ce511fe4b40a4148804143c5ba6cb9dfe1b
parent352f4feb0ba8b23845f5581393c066bf7ede5905 (diff)
downloadrdiff-backup-f2151c1e13337493246f9e61c604d95e97c70442.tar.gz
Removed ownership changing warning that is usually unneeded
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@618 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/rdiff_backup/fs_abilities.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/rdiff-backup/rdiff_backup/fs_abilities.py b/rdiff-backup/rdiff_backup/fs_abilities.py
index ff9fd19..b3d69a0 100644
--- a/rdiff-backup/rdiff_backup/fs_abilities.py
+++ b/rdiff-backup/rdiff_backup/fs_abilities.py
@@ -190,10 +190,7 @@ rdiff-backup-data/chars_to_quote.
try:
tmp_rp.chown(uid+1, gid+1) # just choose random uid/gid
tmp_rp.chown(0, 0)
- except (IOError, OSError), exc:
- log.Log("Warning: ownership cannot be changed on filesystem "
- "at %s" % (self.root_rp.path,), 3)
- self.ownership = 0
+ except (IOError, OSError), exc: self.ownership = 0
else: self.ownership = 1
tmp_rp.delete()