PEP8 fixes for the utils module. Fixes #3076

This commit is contained in:
Murtuza Zabuawala
2018-01-31 13:58:55 +00:00
committed by Dave Page
parent c6e405ce72
commit c3ddb7df38
23 changed files with 1075 additions and 461 deletions

View File

@@ -30,6 +30,6 @@ def safe_str(x):
if not IS_PY2:
x = x.decode('utf-8')
except:
except Exception:
pass
return cgi.escape(x)