diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-10-14 16:06:53 +0000 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-10-14 16:27:15 +0000 |
commit | 264f6c6c2fc4497b4d939776446afc5cec7f55eb (patch) | |
tree | fc31f817299dfa5830b3a8802a4bac7ea07b26f9 /src | |
parent | ac7231db63d9c01b0eb170ea53e04de4506ef4d6 (diff) | |
download | poezio-264f6c6c2fc4497b4d939776446afc5cec7f55eb.tar.gz poezio-264f6c6c2fc4497b4d939776446afc5cec7f55eb.tar.bz2 poezio-264f6c6c2fc4497b4d939776446afc5cec7f55eb.tar.xz poezio-264f6c6c2fc4497b4d939776446afc5cec7f55eb.zip |
Do not quotify the status in /status command.
Diffstat (limited to 'src')
-rw-r--r-- | src/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index 7e21a786..2825aae4 100644 --- a/src/core.py +++ b/src/core.py @@ -1382,7 +1382,7 @@ class Core(object): """ Completion of /status """ - return the_input.auto_completion([status for status in possible_show], ' ') + return the_input.auto_completion([status for status in possible_show], ' ', quotify=False) def command_presence(self, arg): """ |