summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2013-10-20 18:38:19 -0400
committerJulian Berman <Julian@GrayVines.com>2013-10-20 18:38:19 -0400
commit8a3be956ea0cdd1ca754de3ceebce3ad690dc157 (patch)
tree98ed080e048c9921fadee82a598b1d5e726df9aa
parent1397f0b0c9877ccb7e9174068268942493e71796 (diff)
downloadjsonschema-8a3be956ea0cdd1ca754de3ceebce3ad690dc157.tar.gz
Flake8.
-rw-r--r--jsonschema/exceptions.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/jsonschema/exceptions.py b/jsonschema/exceptions.py
index 5d49410..e93c145 100644
--- a/jsonschema/exceptions.py
+++ b/jsonschema/exceptions.py
@@ -111,9 +111,7 @@ class UnknownType(Exception):
On instance:
%s
""".rstrip()
- ) % (self.type,
- _utils.indent(pschema),
- _utils.indent(pinstance))
+ ) % (self.type, _utils.indent(pschema), _utils.indent(pinstance))
if PY3:
__str__ = __unicode__