Fix a bug introduced in ee6c7d3
(the command args parser would never parse three args, making /set unable to set section-specific options)
This commit is contained in:
parent
8f373ccb0e
commit
c8caccc9a1
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue