summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-01-11 08:42:23 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-01-11 08:42:23 +0000
commit2f464bee98aafe53ebafe0c6f5e138a36bb1b9f2 (patch)
tree2f3d19633fc57ea115f7b3232ca3902aca34dda9
parentcd750fe02f2330710fe01337ac5c7e674d65c2c1 (diff)
downloadrdiff-backup-2f464bee98aafe53ebafe0c6f5e138a36bb1b9f2.tar.gz
Quoted %s in mv command
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r0-12@505 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")