Skip to content

Commit

Permalink
Fixed a regression introduced into eff06db where typed commands were …
Browse files Browse the repository at this point in the history
…not properly tokenized when using tabs instead of spaces.
  • Loading branch information
jordanbriere committed Jan 13, 2023
1 parent 1f38de8 commit 9f38783
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def __init__(self, infile, *args, **kwargs):
class Tokenize(list):
"""Parses the arguments from the given string."""

_pattern = re_compile('"[^"]*"|[^ ]+')
_pattern = re_compile(r'"[^"]*"|[^ \t]+')

def __init__(self, string, comment_prefix=None):
"""Splits the arguments from the given string."""
Expand Down

0 comments on commit 9f38783

Please sign in to comment.