summaryrefslogtreecommitdiff
path: root/postgresqleu/mailqueue/admin.py
diff options
context:
space:
mode:
authorMagnus Hagander2019-01-04 11:52:46 +0000
committerMagnus Hagander2019-01-04 11:52:46 +0000
commit8dd9c29af824db23db5ea5541083b9fa170a6734 (patch)
treef77504778a2ee8f9b1bd143b94fb3bce4baf20b3 /postgresqleu/mailqueue/admin.py
parenta3dc28194300348583b9470ba1dcccda5fad1ec2 (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.py2
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):