summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-02-22 23:44:09 +0000
committerZac Medico <zmedico@gentoo.org>2007-02-22 23:44:09 +0000
commite3f64e64361bfdf62f5548c66542e1f51ad8c919 (patch)
tree002dd63aa4a868b8c22e1d525d127aa43f86624c /pym
parentf4b9d802ea149a5c121ba8d00be8b177bca7aafd (diff)
downloadportage-e3f64e64361bfdf62f5548c66542e1f51ad8c919.tar.gz
portage-e3f64e64361bfdf62f5548c66542e1f51ad8c919.tar.bz2
portage-e3f64e64361bfdf62f5548c66542e1f51ad8c919.zip
Remove quotes since rsync doesn't accept them (and there is no shell to remove them since we use spawn() for rsync now).
svn path=/main/trunk/; revision=6048
Diffstat (limited to 'pym')
-rw-r--r--pym/emerge/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py
index 61bd4836b..91b265669 100644
--- a/pym/emerge/__init__.py
+++ b/pym/emerge/__init__.py
@@ -3795,9 +3795,9 @@ def action_sync(settings, trees, mtimedb, myopts, myaction):
"--delete-after", # Delete only after everything else is done
"--stats", # Show final statistics about what was transfered
"--timeout="+str(mytimeout), # IO timeout if not done in X seconds
- "--exclude='/distfiles'", # Exclude distfiles from consideration
- "--exclude='/local'", # Exclude local from consideration
- "--exclude='/packages'", # Exclude packages from consideration
+ "--exclude=/distfiles", # Exclude distfiles from consideration
+ "--exclude=/local", # Exclude local from consideration
+ "--exclude=/packages", # Exclude packages from consideration
"--filter=H_**/files/digest-*" # Exclude manifest1 digests and delete on the receiving side
])