diff options
author | Dan McGee <dan@archlinux.org> | 2011-04-28 13:59:53 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-28 14:00:54 -0500 |
commit | 6516220b17d7987900961863a0b6dec23ac14855 (patch) | |
tree | 8988d3233e32c6038f6c069d742e2896673a6b98 /isotests/admin.py | |
parent | 1ea5be1a0693d8f24b5d147092fd4a15c7fdd4a7 (diff) |
isotests: update some syntax and ways of doing things
To be more Django-like, Pythonic, or to fit better in the existing
archweb project. Also add some created fields to the models, as storing
dates for anything is almost always a good idea.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'isotests/admin.py')
-rw-r--r-- | isotests/admin.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/isotests/admin.py b/isotests/admin.py index 17303c58..10acaa98 100644 --- a/isotests/admin.py +++ b/isotests/admin.py @@ -1,8 +1,7 @@ from django.contrib import admin -from isotests.models import Iso, Architecture, IsoType, BootType -from isotests.models import HardwareType, InstallType, Source -from isotests.models import ClockChoice, Filesystem, Module, Bootloader +from .models import (Architecture, BootType, Bootloader, ClockChoice, + Filesystem, HardwareType, InstallType, Iso, IsoType, Module, Source) admin.site.register(Iso) admin.site.register(Architecture) |