From 61b944c35352896ddd7cbf70c11c7b60d50eca60 Mon Sep 17 00:00:00 2001 From: adam j hartz Date: Tue, 24 Mar 2015 22:43:51 -0400 Subject: [PATCH] revert seemingly unneccesary small change --- xonsh/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xonsh/ast.py b/xonsh/ast.py index ac147ca90..85a9c4bb6 100644 --- a/xonsh/ast.py +++ b/xonsh/ast.py @@ -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: