aboutsummaryrefslogtreecommitdiffstats
path: root/servo/management/commands
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-11-02 21:24:52 +0200
committerFilipp Lepalaan <filipp@mac.com>2016-11-02 21:24:52 +0200
commitda1014421d0fffa146a6ee581a9c522c84b8c1fe (patch)
tree0522981df0ad95124b933834e4a32f89f474f9ca /servo/management/commands
parent9bf45810ca9729fac51d796651a310a07d7b92cf (diff)
downloadServo-da1014421d0fffa146a6ee581a9c522c84b8c1fe.tar.gz
Servo-da1014421d0fffa146a6ee581a9c522c84b8c1fe.tar.bz2
Servo-da1014421d0fffa146a6ee581a9c522c84b8c1fe.zip
Cleanup
Diffstat (limited to 'servo/management/commands')
-rw-r--r--servo/management/commands/obfuscate.py66
1 files changed, 32 insertions, 34 deletions
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()
-