Author: breser
Date: Wed Jun 12 14:03:00 2013
New Revision: 1492211
URL: http://svn.apache.org/r1492211
Log:
Revert r1492189, this isn't nearly enough to enable https support.
Modified:
subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py
Modified: subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py?rev=1492211&r1=1492210&r2=1492211&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py (original)
+++ subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py Wed Jun 12
14:03:00 2013
@@ -71,8 +71,8 @@ class Client(asynchat.async_chat):
self.url = url
parsed_url = urlparse.urlsplit(url)
- if parsed_url.scheme != 'http' and parsed.url_scheme != 'https':
- raise ValueError("URL scheme must be http or https: '%s'" % url)
+ if parsed_url.scheme != 'http':
+ raise ValueError("URL scheme must be http: '%s'" % url)
host = parsed_url.hostname
port = parsed_url.port
resource = parsed_url.path