Unroll the ping list

The Python code defining the ping list has gotten a bit messy as
names are added or removed. Instead of trying to keep the formatting
updated, which is a waste of time since we reformat it on output
anyway, just make it a single vertical list that can be easily added
to or removed from.

Change-Id: I636944deb39b682abd29d741bfb9dff41dfb9bee
This commit is contained in:
Ben Nemec 2019-03-25 16:53:41 +00:00
parent a80ab52615
commit 31f4e9f02a
1 changed files with 33 additions and 7 deletions

View File

@ -18,13 +18,39 @@ import collections
import sys import sys
NOTIFY_PEPS = [ NOTIFY_PEPS = [
'amotoki', 'amrith', 'ansmith', 'bnemec', 'amotoki',
'dansmith', 'dims', 'dougwig', 'e0ne', 'flaper87', 'amrith',
'garyk', 'haypo', 'hberaud', 'electrocucaracha', 'jd__', 'ansmith',
'johnsom', 'jungleboyj', 'kgiusti', 'kragniz', 'lhx_', 'moguimar', 'bnemec',
'njohnston', 'raildo', 'redrobot', 'dansmith',
'sileht', 'sreshetnyak', 'stephenfin', 'stevemar', 'therve', 'thinrichs', 'dims',
'toabctl', 'zhiyan', 'zzzeek', 'gcb', 'dougwig',
'e0ne',
'flaper87',
'garyk',
'haypo',
'hberaud',
'electrocucaracha',
'jd__',
'johnsom',
'jungleboyj',
'kgiusti',
'kragniz',
'lhx_',
'moguimar',
'njohnston',
'raildo',
'redrobot',
'sileht',
'sreshetnyak',
'stephenfin',
'stevemar',
'therve',
'thinrichs',
'toabctl',
'zhiyan',
'zzzeek',
'gcb',
'zxy', 'zxy',
] ]
NOTIFY_PEPS = sorted(NOTIFY_PEPS, key=str.lower) NOTIFY_PEPS = sorted(NOTIFY_PEPS, key=str.lower)