Fix syntax error

I can only wonder how I managed to write it like that...
This commit is contained in:
Marcos Dione
2017-02-07 16:57:17 +01:00
committed by GitHub
parent b00d8bf474
commit 571d2c2cd7
+1 -1
View File
@@ -87,5 +87,5 @@ codes = LookupDict(name='status_codes')
for code, titles in _codes.items():
for title in titles:
setattr(codes, title, code)
if not if not title.startswith(('\\', '/')):
if not title.startswith(('\\', '/')):
setattr(codes, title.upper(), code)