diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-02 20:50:35 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-02 20:50:35 +0200 |
commit | 68a3aca643733713427dbd7686bb49206a21b943 (patch) | |
tree | c7fa80fd9a7fb2401ccaf557f093d0b72185d3d8 /src/plugins/python/weechat-python.c | |
parent | 6fe354439ced7b110a7aae43784924ba264d2aa8 (diff) | |
download | weechat-68a3aca643733713427dbd7686bb49206a21b943.zip |
plugins: use a different plugin priority for each scripting language
Diffstat (limited to 'src/plugins/python/weechat-python.c')
-rw-r--r-- | src/plugins/python/weechat-python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index 1e84a6cbd..518151e4b 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -40,7 +40,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Support of python scripts")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(4000); +WEECHAT_PLUGIN_PRIORITY(4002); struct t_weechat_plugin *weechat_python_plugin = NULL; |