From b40e9dd5ea6777df42f50ce7c79565456402fbe9 Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Wed, 27 Jun 2018 02:37:35 -0400 Subject: [PATCH] Fix bug while importing django version for #613 --- helpdesk/views/staff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/views/staff.py b/helpdesk/views/staff.py index ac9a9af6..df65955a 100644 --- a/helpdesk/views/staff.py +++ b/helpdesk/views/staff.py @@ -9,7 +9,7 @@ views/staff.py - The bulk of the application - provides most business logic and from __future__ import unicode_literals from datetime import datetime, timedelta -import django.VERSION as DJANGO_VERSION +from django import VERSION as DJANGO_VERSION from django.conf import settings from django.contrib.auth import get_user_model from django.contrib.auth.decorators import user_passes_test