Skip to content

Commit

Permalink
Make relative import explicit
Browse files Browse the repository at this point in the history
This commit makes the relative import of the 'settings' module explicit. This is necessary for Python 3 (and a good practice in Python 2)
  • Loading branch information
JshWright committed Oct 3, 2015
1 parent 224109a commit 8115fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cryptographic_fields/fields.py
Expand Up @@ -4,7 +4,7 @@
from django.utils.functional import cached_property
from django.core import validators

from settings import FIELD_ENCRYPTION_KEY
from .settings import FIELD_ENCRYPTION_KEY

import cryptography.fernet

Expand Down

0 comments on commit 8115fe6

Please sign in to comment.