mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
lstrip before $[$[ check
This commit is contained in:
parent
033e767078
commit
9cb1a135ae
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class Execer(object):
|
|||
returnline=True,
|
||||
maxcol=maxcol,
|
||||
lexer=self.parser.lexer)
|
||||
if sbpline.startswith('$[$['):
|
||||
if sbpline.lstrip().startswith('$[$['):
|
||||
# if we have already wrapped this in subproc tokens
|
||||
# and it still doesn't work, adding more won't help
|
||||
# anything
|
||||
|
|
Loading…
Add table
Reference in a new issue