mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-19 06:43:06 +02:00
util: Do not parse mutltiple spaces into empty parts in to_args parser
This commit is contained in:
parent
66b4d1bbf5
commit
9a856d9660
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ def tw_modstring_to_args(line):
|
|||
if not ignored:
|
||||
current_part += char
|
||||
|
||||
if process_next_part:
|
||||
if process_next_part and current_part:
|
||||
output.append(current_part)
|
||||
current_part = ''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue