diff options
author | Magnus Hagander | 2014-01-01 15:33:29 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-01-01 15:33:52 +0000 |
commit | 94e3b79dceb9ea08de1c0fe2b5b448fec7a316c9 (patch) | |
tree | eed75bd18aacbb04f99682010afde613428e3a50 /pgweb/downloads/admin.py | |
parent | 756aa6ffbe71f387ae5fa2885dce893b075db9f2 (diff) |
Replace wildcard imports with explicit ones
Diffstat (limited to 'pgweb/downloads/admin.py')
-rw-r--r-- | pgweb/downloads/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgweb/downloads/admin.py b/pgweb/downloads/admin.py index e395e7c9..81fa05c7 100644 --- a/pgweb/downloads/admin.py +++ b/pgweb/downloads/admin.py @@ -5,7 +5,7 @@ from django.forms import ValidationError import re from util.admin import PgwebAdmin -from models import * +from models import StackBuilderApp, Mirror, Category, Product, LicenceType class MirrorAdmin(admin.ModelAdmin): list_display = ('__unicode__', 'country_name', 'country_code', 'mirror_index', 'mirror_last_rsync', 'host_sponsor', ) |