mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-06 01:10:57 +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."""
|
"""Tries to parse the line of the node as a subprocess."""
|
||||||
line = self.lines[node.lineno - 1]
|
line = self.lines[node.lineno - 1]
|
||||||
mincol = len(line) - len(line.lstrip())
|
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,
|
spline = subproc_toks(line, mincol=mincol, maxcol=maxcol,
|
||||||
returnline=False, lexer=self.parser.lexer)
|
returnline=False, lexer=self.parser.lexer)
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Reference in a new issue