summaryrefslogtreecommitdiff
path: root/pyparsing/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyparsing/actions.py')
-rw-r--r--pyparsing/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/actions.py b/pyparsing/actions.py
index 921b23f..0c185ab 100644
--- a/pyparsing/actions.py
+++ b/pyparsing/actions.py
@@ -11,7 +11,7 @@ def matchOnlyAtCol(n):
def verifyCol(strg, locn, toks):
if col(locn, strg) != n:
- raise ParseException(strg, locn, "matched token not at column %d" % n)
+ raise ParseException(strg, locn, "matched token not at column {}".format(n))
return verifyCol