diff options
author | Magnus Hagander | 2016-04-28 09:32:13 +0000 |
---|---|---|
committer | Magnus Hagander | 2016-05-14 17:49:12 +0000 |
commit | 350b936e5894b0991c3bc6deb48104449c72a11c (patch) | |
tree | cc08d9a61f75b81fa0c7f4d22f70232a63cc4793 /pgweb/docs/struct.py | |
parent | 856dbd31a2ea51a1ed9cd9b7c3bd2a0e1a7f567f (diff) |
Prefix cross-application imports with pgweb
As required by the new project layout.
Diffstat (limited to 'pgweb/docs/struct.py')
-rw-r--r-- | pgweb/docs/struct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgweb/docs/struct.py b/pgweb/docs/struct.py index 022f8768..a2cc56a3 100644 --- a/pgweb/docs/struct.py +++ b/pgweb/docs/struct.py @@ -1,5 +1,5 @@ from django.db import connection -from core.models import Version +from pgweb.core.models import Version def get_struct(): currentversion = Version.objects.get(current=True) |