diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-15 01:42:24 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-11-15 01:42:24 +0100 |
commit | 4208920f425e9f37072715e52a5c7e95f074ab6e (patch) | |
tree | 4f6d62c7f5a5c4abafe0e9ff9546be7f136d4d3b | |
parent | b82b99f2661c2fa40e319d7205330f523223bc1b (diff) | |
download | poezio-4208920f425e9f37072715e52a5c7e95f074ab6e.tar.gz poezio-4208920f425e9f37072715e52a5c7e95f074ab6e.tar.bz2 poezio-4208920f425e9f37072715e52a5c7e95f074ab6e.tar.xz poezio-4208920f425e9f37072715e52a5c7e95f074ab6e.zip |
Fixes #2279
-rw-r--r-- | src/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.py b/src/common.py index 7e1c0642..35fd08da 100644 --- a/src/common.py +++ b/src/common.py @@ -173,6 +173,7 @@ def datetime_tuple(timestamp): def shell_split(st): sh = shlex.shlex(st, posix=True) + sh.commenters = '' sh.whitespace_split = True sh.quotes = '"' ret = list() |