We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc1981a commit 07ba4c0Copy full SHA for 07ba4c0
1 file changed
ietf/tests.py
@@ -57,7 +57,7 @@ def get_patterns(module):
57
def split_url(url):
58
if "?" in url:
59
url, args = url.split("?", 1)
60
- args = dict([ arg.split("=", 1) for arg in args.split("&") ])
+ args = dict([ arg.split("=", 1) for arg in args.split("&") if "=" in arg ])
61
else:
62
args = {}
63
return url, args
0 commit comments