mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 00:41:00 +01:00
revert seemingly unneccesary small change
This commit is contained in:
parent
d289163b5f
commit
61b944c353
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue