Merge pull request #1385 from jnbrex/master

Changed tuple to list
This commit is contained in:
mdipierro
2016-07-02 01:04:04 -05:00
committed by GitHub
+1 -1
View File
@@ -1930,7 +1930,7 @@ class Auth(object):
parts = next.split('/')
if not ':' in parts[0]:
return next
elif len(parts)>2 and parts[0].endswith(':') and parts[1:3]==('', host):
elif len(parts)>2 and parts[0].endswith(':') and parts[1:3]==['', host]:
return next
return None