Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update django 3 #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ MANIFEST
*.egg
*.sqlite3
docs/_build/
.idea/
5 changes: 4 additions & 1 deletion geoposition/fields.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from __future__ import unicode_literals

from django.db import models
from django.utils.six import with_metaclass
try:
from django.utils.six import with_metaclass
except:
from six import with_metaclass
from django.utils.translation import ugettext_lazy as _
from django.utils.encoding import smart_text

Expand Down
5 changes: 4 additions & 1 deletion geoposition/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import json
from django import forms
from django.template.loader import render_to_string
from django.utils import six
try:
from django.utils import six
except:
import six
from django.utils.translation import ugettext_lazy as _
from .conf import settings

Expand Down