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 /settings.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 'settings.py')
-rw-r--r-- | settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings.py b/settings.py index d4d3d96b..a21205d3 100644 --- a/settings.py +++ b/settings.py @@ -124,7 +124,7 @@ if DEBUG_TOOLBAR: INSTALLED_APPS = list(INSTALLED_APPS) + [ 'debug_toolbar' ] -# rtf settings -ISOLISTURL = 'http://releng.archlinux.org/isos/' +# URL to fetch a current list of available ISOs +ISO_LIST_URL = 'http://releng.archlinux.org/isos/' # vim: set ts=4 sw=4 et: |