aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-11-24 07:48:26 -0800
committerZac Medico <zmedico@gentoo.org>2010-11-24 07:48:26 -0800
commit14a87aad60059a15a7022a5f3f56f08016d67dc9 (patch)
tree171ad2b94a8f485c391f886480e40f8b058f9c8d /pym/_emerge/actions.py
parentemerge: accept 'y' for options that accept 'n' (diff)
downloadportage-14a87aad60059a15a7022a5f3f56f08016d67dc9.tar.gz
portage-14a87aad60059a15a7022a5f3f56f08016d67dc9.tar.bz2
portage-14a87aad60059a15a7022a5f3f56f08016d67dc9.zip
action_sync: preserved leading / in ssh uri
Diffstat (limited to 'pym/_emerge/actions.py')
-rw-r--r--pym/_emerge/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
index 90d5dcd02..6080dd243 100644
--- a/pym/_emerge/actions.py
+++ b/pym/_emerge/actions.py
@@ -2214,7 +2214,7 @@ def action_sync(settings, trees, mtimedb, myopts, myaction):
(retries, effective_maxretries, dosyncuri), noiselevel=-1)
if dosyncuri.startswith('ssh://'):
- dosyncuri = dosyncuri[6:].replace('/', ':', 1)
+ dosyncuri = dosyncuri[6:].replace('/', ':/', 1)
if mytimestamp != 0 and "--quiet" not in myopts:
print(">>> Checking server timestamp ...")