From 4ad4db09cbf9fc4bf37afc60cb82ccb7fb6041e4 Mon Sep 17 00:00:00 2001 From: Yann Date: Wed, 17 Aug 2016 15:48:20 +0200 Subject: [PATCH] Upgrade filesystem_session plugin to fit with new plugin handdling --- plugins/filesystem_session/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/filesystem_session/__init__.py b/plugins/filesystem_session/__init__.py index 56150d7..3cb2bac 100644 --- a/plugins/filesystem_session/__init__.py +++ b/plugins/filesystem_session/__init__.py @@ -1,5 +1,8 @@ from lodel.settings.validator import SettingValidator +__plugin_name__ = 'filesystem_session' +__version = [0,0,1] +__type__ = 'session_handler' __loader__ = 'main.py' __confspec__ = "confspec.py" __author__ = "Lodel2 dev team" @@ -10,4 +13,4 @@ __fullname__ = "FileSystem Session Store Plugin" # # @return True if checks are OK else returns a string with a reason def _activate(): - return True \ No newline at end of file + return True