aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/language/exceptions.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-05-30 12:03:13 +1200
committerAldo Cortesi <aldo@nullcube.com>2015-05-30 12:03:13 +1200
commit4ed5043c67848bf717e48bc509d959422c8faeb6 (patch)
tree92abe731c72d34bf6b43cbe1ecb46939953a6860 /libpathod/language/exceptions.py
parent904760c6c2927caf49b7cbe4027dd1c8dd8e9fdb (diff)
downloadmitmproxy-4ed5043c67848bf717e48bc509d959422c8faeb6.tar.gz
mitmproxy-4ed5043c67848bf717e48bc509d959422c8faeb6.tar.bz2
mitmproxy-4ed5043c67848bf717e48bc509d959422c8faeb6.zip
Add coding style check, reformat.
Diffstat (limited to 'libpathod/language/exceptions.py')
-rw-r--r--libpathod/language/exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpathod/language/exceptions.py b/libpathod/language/exceptions.py
index c9d0b2f0..a65c7936 100644
--- a/libpathod/language/exceptions.py
+++ b/libpathod/language/exceptions.py
@@ -15,7 +15,7 @@ class ParseException(Exception):
self.col = col
def marked(self):
- return "%s\n%s"%(self.s, " " * (self.col - 1) + "^")
+ return "%s\n%s" % (self.s, " " * (self.col - 1) + "^")
def __str__(self):
- return "%s at char %s"%(self.msg, self.col)
+ return "%s at char %s" % (self.msg, self.col)