Merge pull request #907 from alphagov/upper-case-dvla-ids

Upper case only in the random notification id generator
This commit is contained in:
minglis
2017-04-21 14:26:03 +01:00
committed by GitHub
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):