diff -r fc1ab84c242f -r 529f1c17c93e PluginProjectDjangoTagsMenu.py --- a/PluginProjectDjangoTagsMenu.py Sat Dec 23 16:54:25 2023 +0100 +++ b/PluginProjectDjangoTagsMenu.py Mon Oct 28 16:51:09 2024 +0100 @@ -17,20 +17,23 @@ from ProjectDjangoTagsMenu.DjangoTagsMenuHandler import DjangoTagsMenuHandler # Start-of-Header -name = "Django Tags Menu Plugin" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = "10.2.0" -className = "ProjectDjangoTagsMenuPlugin" -packageName = "ProjectDjangoTagsMenu" -shortDescription = "Tags menu for Django projects." -longDescription = ( - """This plug-in adds a menu to select various tag templates to the""" - """ Django menu.""" -) -needsRestart = False -pyqtApi = 2 +__header__ = { + "name": "Django Tags Menu Plugin", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": "10.2.1", + "className": "ProjectDjangoTagsMenuPlugin", + "packageName": "ProjectDjangoTagsMenu", + "shortDescription": "Tags menu for Django projects.", + "longDescription": ( + "This plug-in adds a menu to select various tag templates to the" + " Django menu." + ), + "needsRestart": False, + "hasCompiledForms": True, + "pyqtApi": 2, +} # End-of-Header error = ""