From 9b0a2cd70caccc3285e19630848e104110340364 Mon Sep 17 00:00:00 2001 From: andis Date: Mon, 19 Dec 2022 10:44:56 +0100 Subject: [PATCH] increase length of randomid --- fet2020/fet2020/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fet2020/fet2020/utils.py b/fet2020/fet2020/utils.py index abea0648..9e9ba755 100644 --- a/fet2020/fet2020/utils.py +++ b/fet2020/fet2020/utils.py @@ -26,4 +26,4 @@ def add_log_action(request, form, app_label, model, add=True): ) def create_random_id(): - return str(uuid.uuid4())[:8] + return str(uuid.uuid4())[:36]