[Zope-Checkins] CVS: Zope2 - client.py:1.15.4.2

Andreas Jung andreas@dhcp165.digicool.com
Fri, 20 Apr 2001 08:42:05 -0400


Update of /cvs-repository/Zope2/lib/python/webdav
In directory yetix:/work/sandboxes/ajung-2_4-ts_regex-exterminiation-branch/lib/python/webdav

Modified Files:
      Tag: ajung-2_4-ts_regex-exterminiation-branch
	client.py 
Log Message:
changed var name



--- Updated File client.py in package Zope2 --
--- client.py	2001/04/18 18:59:49	1.15.4.1
+++ client.py	2001/04/20 12:42:04	1.15.4.2
@@ -58,7 +58,7 @@
         self.password=password
         self.url=url
 
-        mo = urlregex.match(url)
+        mo = urlreg.match(url)
         if mo is not None:
             host,port,uri=mo.group(1,2,3)
             self.host=host
@@ -425,7 +425,7 @@
 ##############################################################################
 # Implementation details below here
 
-urlregex=re.compile('http://([^:/]+)(:[0-9]+)?(/.+)?', re.I)
+urlreg=re.compile('http://([^:/]+)(:[0-9]+)?(/.+)?', re.I)
 
 def marshal_string(name, val):
     return '%s=%s' % (name, quote(str(val)))