def ircrypt_config_reload_cb(data, config_file): '''Handle a reload of the configuration file. ''' global ircrypt_keys, ircrypt_cipher # Forget Keys and ciphers to make sure they are properly reloaded and no old # ones are left ircrypt_keys = {} ircrypt_cipher = {} return weechat.config_reload(config_file)
def fish_config_reload_cb(data, config_file): return weechat.config_reload(config_file)
def webex_config_reload_cb(data, config_file): """ Reload config file. """ return weechat.config_reload(config_file)
def ug_config_reload_cb(data, config_file): """ Reload configuration file. """ return weechat.config_reload(config_file)
def bas_config_reload_cb(data, config_file): """Reload configuration file.""" return weechat.config_reload(config_file)
def execbot_config_reload_cb(data, config_file): '''Handle a reload of the configuration file.''' global execbot_allows execbot_allows = {} return weechat.config_reload(config_file)
def my_config_reload_cb(): return weechat.config_reload(config_file)
def crypt_config_reload(data, config_file): global crypt_last_msg_type, crypt_ciphers crypt_last_msg_type = {} crypt_ciphers = {} return weechat.config_reload(config_file)