diff options
author | Andreas Hasenack <andreas@mandriva.com> | 2006-07-17 20:37:17 +0000 |
---|---|---|
committer | Andreas Hasenack <andreas@mandriva.com> | 2006-07-17 20:37:17 +0000 |
commit | 14b375292a8a6595a10b24b61fb69e795664ae76 (patch) | |
tree | 1e66367723f0494e7c029b8f47dd16a6e5fa422e /RepSys/svn.py | |
parent | c0a8ecd9b41c9b65b77106e9bcebb6ebb489c9a9 (diff) | |
download | mgarepo-14b375292a8a6595a10b24b61fb69e795664ae76.tar mgarepo-14b375292a8a6595a10b24b61fb69e795664ae76.tar.gz mgarepo-14b375292a8a6595a10b24b61fb69e795664ae76.tar.bz2 mgarepo-14b375292a8a6595a10b24b61fb69e795664ae76.tar.xz mgarepo-14b375292a8a6595a10b24b61fb69e795664ae76.zip |
- added workaround for #23251 (don't ask for password if not needed)
- fixed svn's output parsing, this changed in more recent versions (doesn't
affect Mandriva because we use svn+ssh, not https)
Diffstat (limited to 'RepSys/svn.py')
-rw-r--r-- | RepSys/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/svn.py b/RepSys/svn.py index 6a42e6d..6919070 100644 --- a/RepSys/svn.py +++ b/RepSys/svn.py @@ -38,7 +38,7 @@ class SVN: outlist = [] while True: i = p.expect_exact([pexpect.EOF, pexpect.TIMEOUT, - "username:", "password:", + "Username:", "Password for '%s':" % self.username, "(p)ermanently?", "Authorization failed"]) if i == 0: |