You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shlex.split does not understand shell comments. Because of this, a line containing a perfectly valid comment could cause a parse error: shlex.split("# Don't panic") triggers a "No closing quotation" error because of the apostrophe in the comment.
See #214 for a new parser implementation with tests that appears to avoid the issue.
The text was updated successfully, but these errors were encountered:
shlex.split
does not understand shell comments. Because of this, a line containing a perfectly valid comment could cause a parse error:shlex.split("# Don't panic")
triggers a "No closing quotation" error because of the apostrophe in the comment.See #214 for a new parser implementation with tests that appears to avoid the issue.
The text was updated successfully, but these errors were encountered: