diff options
Diffstat (limited to 'Lib/shlex.py')
| -rw-r--r-- | Lib/shlex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shlex.py b/Lib/shlex.py index f083918..ecd2efd 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py @@ -224,7 +224,7 @@ class shlex: if self.debug >= 2: print("shlex: I see punctuation in word state") self.state = ' ' - if self.token: + if self.token or (self.posix and quoted): break # emit current token else: continue |
