aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdano Arendartchuk <bogdano@mandriva.org>2008-02-05 20:57:42 +0000
committerBogdano Arendartchuk <bogdano@mandriva.org>2008-02-05 20:57:42 +0000
commit66fb7a96a4101acc06de59492ab74f00e5c85210 (patch)
tree87756fb0262ad53438a25b1f03ee7b4e1aff87ef
parent970849f41b0370f1b225d53ee39a8fd3ed07eab3 (diff)
downloadmgarepo-66fb7a96a4101acc06de59492ab74f00e5c85210.tar
mgarepo-66fb7a96a4101acc06de59492ab74f00e5c85210.tar.gz
mgarepo-66fb7a96a4101acc06de59492ab74f00e5c85210.tar.bz2
mgarepo-66fb7a96a4101acc06de59492ab74f00e5c85210.tar.xz
mgarepo-66fb7a96a4101acc06de59492ab74f00e5c85210.zip
Fixed mistake in svn error message handling
-rw-r--r--RepSys/svn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/svn.py b/RepSys/svn.py
index 7459033..985329d 100644
--- a/RepSys/svn.py
+++ b/RepSys/svn.py
@@ -34,7 +34,7 @@ class SVN:
"Seems ssh-agent or ForwardAgent are not setup, see "
"http://wiki.mandriva.com/en/Development/Docs/Contributor_Tricks#SSH_configuration"
" for more information." % e)
- elif "authorization failed":
+ elif "authorization failed" in e.message:
raise Error, ("%s\n"
"Note that repsys does not support any HTTP "
"authenticated access." % e)