Make generator aware of USA names

This commit is contained in:
Peter van der Does
2017-05-04 10:09:39 -04:00
parent 21fb9a6a1c
commit e0fa3e000b

View File

@@ -80,7 +80,7 @@ user_parser.add_argument('--country',
action='store',
default='germany',
help='What country the generated users should belong to. Default: Germany',
choices=['germany', 'ukraine', 'spain'])
choices=['germany', 'ukraine', 'spain', 'usa'])
# Workout options
workouts_parser = subparsers.add_parser('workouts', help='Create workouts')
@@ -452,7 +452,7 @@ if hasattr(args, 'number_nutrition_plans'):
# Total meals per plan
total_meals = 4
for user in userlist:
print(' - generating for {0}'.format(user.username))