From 18c2ead0ee151e9c47e2a0705fda872449693dae Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Mon, 2 Apr 2018 20:45:13 +0000 Subject: [PATCH] Clean up ping list There are a number of people who are no longer active on OpenStack and/or Oslo that are still being courtesy pinged for meetings. Let's stop doing that. This is probably not a complete cleanup, but it's a step in the right direction. Change-Id: I719b4ad605b52005394f823650230b906e7dbd13 --- ping_me.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ping_me.py b/ping_me.py index 5510c2a..d675f90 100644 --- a/ping_me.py +++ b/ping_me.py @@ -18,15 +18,14 @@ import collections import sys NOTIFY_PEPS = [ - 'GheRivero', 'amotoki', 'amrith', 'ansmith', 'bknudson', 'bnemec', + 'amotoki', 'amrith', 'ansmith', 'bnemec', 'dansmith', 'dhellmann', 'dims', 'dougwig', 'e0ne', 'flaper87', - 'garyk', 'haypo', 'electrocucaracha', 'jd__', 'jecarey', + 'garyk', 'haypo', 'electrocucaracha', 'jd__', 'johnsom', 'jungleboyj', 'kgiusti', 'kragniz', 'lhx_', - 'lifeless', 'lxsli', 'ozamiatin', 'raildo', 'redrobot', 'crushil', - 'rpodolyaka', 'spamaps', 'sergmelikyan', + 'raildo', 'redrobot', 'spamaps', 'sileht', 'sreshetnyak', 'stevemar', 'therve', 'thinrichs', - 'toabctl', 'viktors', 'zhiyan', 'zzzeek', 'gcb', - 'Nakato', 'rbradfor', 'zxy', + 'toabctl', 'zhiyan', 'zzzeek', 'gcb', + 'zxy', ] NOTIFY_PEPS = sorted(NOTIFY_PEPS, key=str.lower) NUM_PER_LINE = 7