Skip to content

Commit

Permalink
Merge pull request rewardz#6 from jonathan-golorry/django3
Browse files Browse the repository at this point in the history
Using six to add Django 3.0 support
  • Loading branch information
ramast authored Dec 14, 2019
2 parents 68c8281 + 454fe50 commit 4206faf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion model_helpers.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import six

from django.core.exceptions import ValidationError
from os import path as fs_path
from time import strftime
from django.utils.text import slugify
from django.utils import six
from django.utils.translation import ugettext as _
from django.core.cache import cache
from django.conf import settings
Expand Down
3 changes: 2 additions & 1 deletion tests/test_key_value_field.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import six

from nose import tools as test
from sample.models import Team
from django.core.exceptions import ValidationError
from django.utils import six


def test_key_value_field():
Expand Down

0 comments on commit 4206faf

Please sign in to comment.