diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-07-23 09:24:34 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-07-23 09:24:34 (GMT) |
commit | df6298b8f0f2144ad8e975ab0b0b30cc73ee9b5c (patch) | |
tree | 714fe10115f7c7e785072ff40071039712f6b5b3 /plugins/python/apkfiles | |
parent | 1e46553615fa6a7057a7c46c249485365b4c147c (diff) |
Fix the Python scripts loading.
Diffstat (limited to 'plugins/python/apkfiles')
-rw-r--r-- | plugins/python/apkfiles/apkfiles.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/python/apkfiles/apkfiles.py b/plugins/python/apkfiles/apkfiles.py index b85b0c8..c45f8c9 100644 --- a/plugins/python/apkfiles/apkfiles.py +++ b/plugins/python/apkfiles/apkfiles.py @@ -14,7 +14,7 @@ class ApkFiles(PluginModule): desc = { - 'name' : 'Welcome', + 'name' : 'ApkFiles', 'desc' : 'Add suppport for the APK file format', 'version' : '0.1', @@ -25,8 +25,8 @@ class ApkFiles(PluginModule): return desc - def init(self, ref): - """Initialise l'extension.""" + def init(self): + """Initialize the plugin.""" return True |