diff options
author | Magnus Hagander | 2019-01-04 11:52:46 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-01-04 11:52:46 +0000 |
commit | 8dd9c29af824db23db5ea5541083b9fa170a6734 (patch) | |
tree | f77504778a2ee8f9b1bd143b94fb3bce4baf20b3 /postgresqleu/mailqueue/util.py | |
parent | a3dc28194300348583b9470ba1dcccda5fad1ec2 (diff) |
Fix sibling imports
Sibling imports should be prefixed with a period. Good idea in py2, will
eventually become required in py3, so another small step.
Diffstat (limited to 'postgresqleu/mailqueue/util.py')
-rw-r--r-- | postgresqleu/mailqueue/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresqleu/mailqueue/util.py b/postgresqleu/mailqueue/util.py index be69d287..9d9a3f4c 100644 --- a/postgresqleu/mailqueue/util.py +++ b/postgresqleu/mailqueue/util.py @@ -9,7 +9,7 @@ from postgresqleu.util.context_processors import settings_context from django.template.loader import get_template -from models import QueuedMail +from .models import QueuedMail def template_to_string(templatename, attrs={}): |