diff options
author | mathieui <mathieui@mathieui.net> | 2015-04-13 14:28:52 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-04-13 14:28:52 +0200 |
commit | c8caccc9a1c33bd00693e7c33ae82db11dc6001f (patch) | |
tree | 7743d139141d5d8826281971d9760c7e24f04851 | |
parent | 8f373ccb0ee729109b440dbac96a84919d955494 (diff) | |
download | poezio-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.py | 2 |
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] |