Update views.py

Fixing typo in 'version'
This commit is contained in:
Thomas 2021-05-14 18:22:01 +02:00 committed by GitHub
parent 138231059b
commit dc57332988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ class InstalledPluginsAPIView(APIView):
'author': plugin_app_config.author,
'author_email': plugin_app_config.author_email,
'description': plugin_app_config.description,
'verison': plugin_app_config.version
'version': plugin_app_config.version
}
def get(self, request, format=None):