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/admin.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/admin.py')
-rw-r--r-- | postgresqleu/mailqueue/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresqleu/mailqueue/admin.py b/postgresqleu/mailqueue/admin.py index 46a6aa1f..6b89205c 100644 --- a/postgresqleu/mailqueue/admin.py +++ b/postgresqleu/mailqueue/admin.py @@ -2,7 +2,7 @@ from django.contrib import admin from email.parser import Parser -from models import QueuedMail +from .models import QueuedMail class QueuedMailAdmin(admin.ModelAdmin): |