From da1014421d0fffa146a6ee581a9c522c84b8c1fe Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Wed, 2 Nov 2016 21:24:52 +0200 Subject: Cleanup --- servo/management/commands/obfuscate.py | 66 +++++++++++++++++----------------- 1 file changed, 32 insertions(+), 34 deletions(-) (limited to 'servo/management/commands') diff --git a/servo/management/commands/obfuscate.py b/servo/management/commands/obfuscate.py index bd0b5c7..09e8639 100644 --- a/servo/management/commands/obfuscate.py +++ b/servo/management/commands/obfuscate.py @@ -12,39 +12,38 @@ class Command(BaseCommand): def handle(self, *args, **options): help = "Obfuscates the information in this Servo install" names = ('Daniel Scott', 'Amy Collins', 'Linda Moore', - 'Dennis Parker', 'Mark Cox', 'Jesse Clark', - 'Brian Patterson', 'Andrew Bennett', 'Frank Lopez', - 'Benjamin Wood', 'Michelle Jenkins', 'Alice Lee', - 'Lois Gonzales', 'Diane Perez', 'Cheryl Torres', - 'Ernest Smith', 'Steve Mitchell', 'Barbara Jones', - 'Wanda Roberts', 'Julie Watson', 'Carlos Harris', - 'Anthony Phillips', 'Ralph Gray', 'Donna Hill', - 'Alan Coleman', 'Lawrence Ross', 'Stephen Flores', - 'Robert Simmons', 'Gloria White', 'Doris Wilson', - 'Shirley Sanders', 'Matthew Bell', 'Janice Hughes', - 'Walter Nelson', 'Gerald Taylor', 'Tammy Martin', - 'Gregory Barnes', 'Jonathan Baker', 'Lillian Green', - 'Brenda Hernandez', 'Denise Davis', 'Bobby Rogers', - 'Joe Lewis', 'Teresa Bailey', 'Craig Russell', - 'Angela Rivera', 'Rebecca Jackson', 'Nicole Henderson', - 'Kenneth James', 'Nicholas Bryant', 'Anne Washington', - 'Irene Miller', 'Theresa Martinez', 'Evelyn Sanchez', - 'Richard Anderson', 'Jeffrey Robinson', 'Heather Diaz', - 'Joshua Butler', 'Joan Peterson', 'Todd Campbell', - 'Timothy Kelly', 'Steven King', 'Norma Reed', - 'Carolyn Turner', 'Ruth Evans', 'Carol Thomas', - 'Arthur Howard', 'Peter Carter', 'Debra Ramirez', - 'Marie Walker', 'Donald Garcia', 'Janet Gonzalez', - 'Harold Adams', 'Bonnie Cook', 'Paula Long', - 'Bruce Griffin', 'Adam Hall' ,'Annie Young', - 'Jacqueline Alexander', 'Kimberly Edwards', 'Sarah Wright', - 'Terry Williams', 'Johnny Morris', 'Andrea Ward', - 'Margaret Allen', 'Sandra Price', 'Scott Foster', - 'Elizabeth Brown', 'Wayne Cooper', 'Mildred Brooks', - 'Dorothy Perry', 'Lori Powell', 'Kathryn Murphy', - 'Judy Johnson', 'Albert Morgan', 'William Richardson', - 'Randy Stewart', 'Roger Thompson', 'Anna Rodriguez', - ) + 'Dennis Parker', 'Mark Cox', 'Jesse Clark', + 'Brian Patterson', 'Andrew Bennett', 'Frank Lopez', + 'Benjamin Wood', 'Michelle Jenkins', 'Alice Lee', + 'Lois Gonzales', 'Diane Perez', 'Cheryl Torres', + 'Ernest Smith', 'Steve Mitchell', 'Barbara Jones', + 'Wanda Roberts', 'Julie Watson', 'Carlos Harris', + 'Anthony Phillips', 'Ralph Gray', 'Donna Hill', + 'Alan Coleman', 'Lawrence Ross', 'Stephen Flores', + 'Robert Simmons', 'Gloria White', 'Doris Wilson', + 'Shirley Sanders', 'Matthew Bell', 'Janice Hughes', + 'Walter Nelson', 'Gerald Taylor', 'Tammy Martin', + 'Gregory Barnes', 'Jonathan Baker', 'Lillian Green', + 'Brenda Hernandez', 'Denise Davis', 'Bobby Rogers', + 'Joe Lewis', 'Teresa Bailey', 'Craig Russell', + 'Angela Rivera', 'Rebecca Jackson', 'Nicole Henderson', + 'Kenneth James', 'Nicholas Bryant', 'Anne Washington', + 'Irene Miller', 'Theresa Martinez', 'Evelyn Sanchez', + 'Richard Anderson', 'Jeffrey Robinson', 'Heather Diaz', + 'Joshua Butler', 'Joan Peterson', 'Todd Campbell', + 'Timothy Kelly', 'Steven King', 'Norma Reed', + 'Carolyn Turner', 'Ruth Evans', 'Carol Thomas', + 'Arthur Howard', 'Peter Carter', 'Debra Ramirez', + 'Marie Walker', 'Donald Garcia', 'Janet Gonzalez', + 'Harold Adams', 'Bonnie Cook', 'Paula Long', + 'Bruce Griffin', 'Adam Hall', 'Annie Young', + 'Jacqueline Alexander', 'Kimberly Edwards', 'Sarah Wright', + 'Terry Williams', 'Johnny Morris', 'Andrea Ward', + 'Margaret Allen', 'Sandra Price', 'Scott Foster', + 'Elizabeth Brown', 'Wayne Cooper', 'Mildred Brooks', + 'Dorothy Perry', 'Lori Powell', 'Kathryn Murphy', + 'Judy Johnson', 'Albert Morgan', 'William Richardson', + 'Randy Stewart', 'Roger Thompson', 'Anna Rodriguez',) """ print 'Munging customer names of open orders...' for i in Order.objects.filter(state=Order.STATE_QUEUED): @@ -80,4 +79,3 @@ class Command(BaseCommand): i.title = 'GSX Account %s' % chr(a) a += 1 i.save() - -- cgit v1.2.3