From dc65600ca979634ae12f5eb646c8650f2c7d6348 Mon Sep 17 00:00:00 2001
From: Leo Fahrbach <leo.fahrbach@tum.de>
Date: Fri, 6 Aug 2021 00:49:59 +0200
Subject: [PATCH] fix #31

---
 .gitignore   | 1 +
 vote/urls.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index bd57f96..e061740 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
 *.pyc
 .idea
 *.sqlite3
+*.log
 /media
 /build
 /dist
diff --git a/vote/urls.py b/vote/urls.py
index 5900f5a..5650bc0 100644
--- a/vote/urls.py
+++ b/vote/urls.py
@@ -20,5 +20,5 @@ urlpatterns = [
     path('vote/<int:election_id>/apply', views.apply, name='apply'),
     path('vote/<int:election_id>/delete-own-application', views.delete_own_application, name='delete_own_application'),
     path('help', views.help_page, name='help'),
-    path('spectator/<str:uuid>', views.spectator, name='spectator')
+    path('spectator/<uuid:uuid>', views.spectator, name='spectator')
 ]
-- 
GitLab