summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-01-11 08:43:39 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-01-11 08:43:39 +0000
commit16d23ad090f0b3548fd669fa07278266396b3dea (patch)
tree954b24b373a1a94c94d39318f489cdad6f805401
parentaffff0634492c2e3a64ba2c7f04b927ef7ce1307 (diff)
downloadrdiff-backup-16d23ad090f0b3548fd669fa07278266396b3dea.tar.gz
Added quotes around %s in mv command
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@506 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rwxr-xr-xrdiff-backup/rdiff_backup/compilec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/compilec.py b/rdiff-backup/rdiff_backup/compilec.py
index f5a8365..7dc9290 100755
--- a/rdiff-backup/rdiff_backup/compilec.py
+++ b/rdiff-backup/rdiff_backup/compilec.py
@@ -30,5 +30,5 @@ def get_libraries():
return clib, rsynclib
for filename in get_libraries():
- assert not os.system("mv %s ." % (filename,))
+ assert not os.system("mv '%s' ." % (filename,))
assert not os.system("rm -rf build")