Fix random flag flag

This commit is contained in:
Maddie H 2022-04-20 18:11:42 +01:00
parent f0e3a90d29
commit 3517e937e0

View File

@ -103,7 +103,7 @@ def main():
if args.random:
# Choose a flag at random from a list of comma-seperated flags
flag_choices = args.choose.split(",")
flag_choices = args.random.split(",")
draw_fetch(random_choice(flag_choices))
if args.list: