revert seemingly unneccesary small change

This commit is contained in:
adam j hartz 2015-03-24 22:43:51 -04:00
parent d289163b5f
commit 61b944c353

View file

@ -100,7 +100,7 @@ class CtxAwareTransformer(NodeTransformer):
"""Tries to parse the line of the node as a subprocess."""
line = self.lines[node.lineno - 1]
mincol = len(line) - len(line.lstrip())
maxcol = None# if self.mode == 'eval' else node.col_offset
maxcol = None if self.mode == 'eval' else node.col_offset
spline = subproc_toks(line, mincol=mincol, maxcol=maxcol,
returnline=False, lexer=self.parser.lexer)
try: