Skip to content

Commit a4e0287

Browse files
committed
Reordering of the INSTALLED_APPS list orderto be alphabetic within each group; no intentional code change.
- Legacy-Id: 9158
1 parent 0be1ad9 commit a4e0287

1 file changed

Lines changed: 16 additions & 13 deletions

File tree

ietf/settings.py

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ def skip_unreadable_post(record):
191191
)
192192

193193
INSTALLED_APPS = (
194+
# Django apps
194195
'django.contrib.auth',
195196
'django.contrib.contenttypes',
196197
'django.contrib.sessions',
@@ -200,28 +201,32 @@ def skip_unreadable_post(record):
200201
'django.contrib.admindocs',
201202
'django.contrib.humanize',
202203
'django.contrib.messages',
204+
# External apps
205+
'form_utils',
203206
'tastypie',
207+
# IETF apps
204208
'ietf.api',
205-
'ietf.person',
206-
'ietf.name',
207-
'ietf.group',
209+
'ietf.community',
210+
'ietf.dbtemplate',
208211
'ietf.doc',
209-
'ietf.message',
212+
'ietf.group',
210213
'ietf.idindex',
211-
'ietf.ietfauth',
212214
'ietf.iesg',
215+
'ietf.ietfauth',
213216
'ietf.ipr',
214217
'ietf.liaisons',
215218
'ietf.mailinglists',
216219
'ietf.meeting',
217-
'ietf.utils',
220+
'ietf.message',
221+
'ietf.name',
222+
'ietf.nomcom',
223+
'ietf.person',
218224
'ietf.redirects',
225+
'ietf.release',
219226
'ietf.submit',
220227
'ietf.sync',
221-
'ietf.community',
222-
'ietf.release',
223-
# secretariat apps
224-
'form_utils',
228+
'ietf.utils',
229+
# IETF Secretariat apps
225230
'ietf.secr.announcement',
226231
'ietf.secr.areas',
227232
'ietf.secr.drafts',
@@ -230,10 +235,8 @@ def skip_unreadable_post(record):
230235
'ietf.secr.proceedings',
231236
'ietf.secr.roles',
232237
'ietf.secr.rolodex',
233-
'ietf.secr.telechat',
234238
'ietf.secr.sreq',
235-
'ietf.nomcom',
236-
'ietf.dbtemplate',
239+
'ietf.secr.telechat',
237240
)
238241

239242
INTERNAL_IPS = (

0 commit comments

Comments
 (0)