summaryrefslogtreecommitdiff
path: root/tokens.py
diff options
context:
space:
mode:
Diffstat (limited to 'tokens.py')
-rw-r--r--tokens.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tokens.py b/tokens.py
index eb03ae8..d476d49 100644
--- a/tokens.py
+++ b/tokens.py
@@ -266,6 +266,7 @@ class CommentToken(Token):
if SHOWLINES:
try:
v += ', line: ' + str(self.start_mark.line)
+ v += ', col: ' + str(self.start_mark.column)
except: # NOQA
pass
return 'CommentToken({})'.format(v)