Skip to content
Snippets Groups Projects
Verified Commit 59f8dec3 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix missing import, closes #13.

parent 56e739bd
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) ...@@ -5,7 +5,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup( setup(
name='ticdesk', name='ticdesk',
version='0.9.2', version='0.9.3',
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
author='Teckids e.V.', author='Teckids e.V.',
......
...@@ -2,6 +2,7 @@ from django.apps import apps ...@@ -2,6 +2,7 @@ from django.apps import apps
from django.conf import settings from django.conf import settings
from django.http import JsonResponse, HttpResponse from django.http import JsonResponse, HttpResponse
from django.shortcuts import redirect, render from django.shortcuts import redirect, render
from django.template.loader import get_template
from django.urls import reverse from django.urls import reverse
from django_tables2 import RequestConfig from django_tables2 import RequestConfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment