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/paypal/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/paypal/admin.py')
-rw-r--r-- | postgresqleu/paypal/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresqleu/paypal/admin.py b/postgresqleu/paypal/admin.py index c4f0f684..c2334cff 100644 --- a/postgresqleu/paypal/admin.py +++ b/postgresqleu/paypal/admin.py @@ -1,5 +1,5 @@ from django.contrib import admin -from models import SourceAccount, TransactionInfo, ErrorLog +from .models import SourceAccount, TransactionInfo, ErrorLog class TransactionInfoAdmin(admin.ModelAdmin): |