diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-03 20:20:21 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-03 20:20:21 +0100 |
commit | 7526776f4eae49dd061665fd29688df9cba60906 (patch) | |
tree | f2ef6ce26ef1113fc13c22a6d0ac52180d29150c /src/plugins/python/weechat-python.c | |
parent | 958f39cb956fda0d3154e28f61d1764b5d9ccd10 (diff) | |
download | weechat-7526776f4eae49dd061665fd29688df9cba60906.zip |
plugins: change priority of scripting plugins
Use a step of 10 between each scripting plugin priority.
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 802dda614..1fd1d713f 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(4002); +WEECHAT_PLUGIN_PRIORITY(4020); struct t_weechat_plugin *weechat_python_plugin = NULL; |