Skip to content

Commit

Permalink
swing 3
Browse files Browse the repository at this point in the history
  • Loading branch information
abathur committed Feb 16, 2024
1 parent 838f789 commit 18339d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion resholve
Original file line number Diff line number Diff line change
Expand Up @@ -4162,7 +4162,11 @@ class RecordCommandlike(object):
)
continue
else:
parsed, _unparsed = parsed
try:
parsed, _unparsed = parsed
except TypeError:
pass

# see sudo parser for example
if "_skip" in parsed and parsed._skip:
continue
Expand Down

0 comments on commit 18339d9

Please sign in to comment.