Upper case only in the random notification id generator

as DVLA need upper case only or the barcode doesn't generate.
This commit is contained in:
Martyn Inglis
2017-04-20 10:55:53 +01:00
parent 67002cd608
commit 5550201939
2 changed files with 2 additions and 4 deletions

View File

@@ -211,7 +211,7 @@ def create_uuid():
def create_random_identifier():
return ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(16))
return ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(16))
def process_user_agent(user_agent_string):