Rev 1275: Unconditionally use auth providers. in http://people.samba.org/bzr/jelmer/bzr-svn/0.4

Jelmer Vernooij jelmer at samba.org
Sun Jun 22 17:21:32 BST 2008


At http://people.samba.org/bzr/jelmer/bzr-svn/0.4

------------------------------------------------------------
revno: 1275
revision-id: jelmer at samba.org-20080622162131-kxdmjx0cw0n7mb2e
parent: jelmer at samba.org-20080622161737-9reehehkesb2pmtu
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 0.4
timestamp: Sun 2008-06-22 18:21:31 +0200
message:
  Unconditionally use auth providers.
modified:
  auth.py                        auth.py-20071209174622-w8d42k6nm5yhxvi8-1
=== modified file 'auth.py'
--- a/auth.py	2008-06-21 21:47:34 +0000
+++ b/auth.py	2008-06-22 16:21:31 +0000
@@ -166,11 +166,8 @@
     # Specify Subversion providers first, because they use file data
     # rather than prompting the user.
     providers = get_stock_svn_providers()
-
-    (major, minor, patch, tag) = ra.version()
-    if major == 1 and minor >= 5:
-        providers += auth_config.get_svn_auth_providers()
-        providers += [get_ssl_client_cert_pw_provider(1)]
+    providers += auth_config.get_svn_auth_providers()
+    providers += [get_ssl_client_cert_pw_provider(1)]
 
     auth_baton = ra.Auth(providers)
     if creds is not None:




More information about the bazaar-commits mailing list