reverted part of previous test

This commit is contained in:
mdipierro
2012-08-01 12:01:17 -05:00
parent c8dcf1b3f2
commit 08d40afb3c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-08-01 09:04:27) dev
Version 2.00.0 (2012-08-01 12:01:12) dev
+1 -1
View File
@@ -336,7 +336,7 @@ def URL(
if url_encode:
other += '?%s' % urllib.urlencode(list_vars)
else:
other += '?%s' % '&'.join([var[0]+'='+var[1] for var in list_vars])
other += '?%s' % '&'.join(['%s=%s' % var[:2] for var in list_vars])
if anchor:
if url_encode:
other += '#' + urllib.quote(str(anchor))