Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugin_installer')
-rw-r--r--plugin_installer/plugin_installer.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugin_installer/plugin_installer.py b/plugin_installer/plugin_installer.py
index 2ad7a00..4655ca1 100644
--- a/plugin_installer/plugin_installer.py
+++ b/plugin_installer/plugin_installer.py
@@ -395,8 +395,11 @@ class DownloadAsync(threading.Thread):
continue
opts = config.options('info')
if not set(MANDATORY_FIELDS).issubset(opts):
- log.warning('Plugin is missing mandatory fields in manifest.ini. '
- 'Plugin not loaded.')
+ log.warning(
+ '%s is missing mandatory fields %s. '
+ 'Plugin not loaded.',
+ filename,
+ set(MANDATORY_FIELDS).difference(opts))
continue
# Add icon and remote dir
icon = None