test
This commit is contained in:
parent
fa13379b90
commit
17db46eb15
@ -21,17 +21,21 @@ class Commands():
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def multi_split_key(self):
|
def multi_split_key(self):
|
||||||
return self.config.SpiceBot.multi_split_key
|
# TODO config
|
||||||
|
# return self.config.spiceBot.multi_split_key
|
||||||
|
return "&&"
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def pipe_split_key(self):
|
def pipe_split_key(self):
|
||||||
# TODO config
|
# TODO config
|
||||||
|
# return self.config.spiceBot.pipe_split_key
|
||||||
return "|"
|
return "|"
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def query_command_key(self):
|
def query_command_key(self):
|
||||||
# TODO config
|
# TODO config
|
||||||
return "|"
|
# return self.config.spiceBot.query_command_key
|
||||||
|
return "?"
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def valid_sopel_commands(self):
|
def valid_sopel_commands(self):
|
||||||
|
|||||||
@ -50,3 +50,5 @@ class Config():
|
|||||||
class SpiceBot_Conf(StaticSection):
|
class SpiceBot_Conf(StaticSection):
|
||||||
|
|
||||||
multi_split_key = ValidatedAttribute('multi_split_key', default="&&")
|
multi_split_key = ValidatedAttribute('multi_split_key', default="&&")
|
||||||
|
pipe_split_key = ValidatedAttribute('pipe_split_key', default="|")
|
||||||
|
query_command_key = ValidatedAttribute('query_command_key', default="?")
|
||||||
|
|||||||
@ -16,8 +16,10 @@ sb = SpiceBotCore_OBJ(SCRIPT_DIR)
|
|||||||
|
|
||||||
|
|
||||||
def configure(config):
|
def configure(config):
|
||||||
config.define_section("SpiceBot", SpiceBot_Conf, validate=False)
|
config.define_section("spiceBot", SpiceBot_Conf, validate=False)
|
||||||
config.SpiceBot_Conf.configure_setting('multi_split_key', 'key to split multi-commands')
|
config.SpiceBot_Conf.configure_setting('multi_split_key', 'key to split multi-commands')
|
||||||
|
config.SpiceBot_Conf.configure_setting('pipe_split_key', 'key to split multi-commands')
|
||||||
|
config.SpiceBot_Conf.configure_setting('query_command_key', 'key to split multi-commands')
|
||||||
|
|
||||||
|
|
||||||
def setup(bot):
|
def setup(bot):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user