Merge pull request #3853 from StyXman/500-small-head

Do not convert /o\ into /O\
This commit is contained in:
Cory Benfield
2017-02-07 16:04:24 +00:00
committed by GitHub
+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 title.startswith('\\'):
if not title.startswith(('\\', '/')):
setattr(codes, title.upper(), code)