diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-02-20 16:29:31 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-02-20 16:29:31 +0100 |
commit | 8700e0bb36e0d52b25975d4486bf3e923cabdf68 (patch) | |
tree | 0e78e19b763328944ee27213ec968e148bc203ee /src/plugins/python | |
parent | 601bd7e0b871e21f1909d8ece03dd00262da93a0 (diff) | |
download | weechat-8700e0bb36e0d52b25975d4486bf3e923cabdf68.zip |
scripts: auto-load scripts with supported extensions only (closes #1698)
Diffstat (limited to 'src/plugins/python')
-rw-r--r-- | src/plugins/python/weechat-python.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index 0a4cca493..5cce23548 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -1053,10 +1053,14 @@ weechat_python_load (const char *filename, const char *code) void weechat_python_load_cb (void *data, const char *filename) { + const char *pos_dot; + /* make C compiler happy */ (void) data; - weechat_python_load (filename, NULL); + pos_dot = strrchr (filename, '.'); + if (pos_dot && (strcmp (pos_dot, ".py") == 0)) + weechat_python_load (filename, NULL); } /* |