summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-04-13 14:28:52 +0200
committermathieui <mathieui@mathieui.net>2015-04-13 14:28:52 +0200
commitc8caccc9a1c33bd00693e7c33ae82db11dc6001f (patch)
tree7743d139141d5d8826281971d9760c7e24f04851
parent8f373ccb0ee729109b440dbac96a84919d955494 (diff)
downloadpoezio-c8caccc9a1c33bd00693e7c33ae82db11dc6001f.tar.gz
poezio-c8caccc9a1c33bd00693e7c33ae82db11dc6001f.tar.bz2
poezio-c8caccc9a1c33bd00693e7c33ae82db11dc6001f.tar.xz
poezio-c8caccc9a1c33bd00693e7c33ae82db11dc6001f.zip
Fix a bug introduced in ee6c7d3
(the command args parser would never parse three args, making /set unable to set section-specific options)
-rw-r--r--src/core/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/commands.py b/src/core/commands.py
index 6bd7bcb9..c0de8a03 100644
--- a/src/core/commands.py
+++ b/src/core/commands.py
@@ -536,7 +536,7 @@ def command_remove_bookmark(self, args):
else:
self.information(_('No bookmark to remove'), 'Info')
-@command_args_parser.quoted(0, 2)
+@command_args_parser.quoted(0, 3)
def command_set(self, args):
"""
/set [module|][section] <option> [value]