From 933e17fca1d667428827bd1b51cbfe9400129b81 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Thu, 6 Apr 2017 12:38:15 +0200
Subject: [PATCH] contact reminder reminds about request with hour resolution

---
 smash/web/views/notifications.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/smash/web/views/notifications.py b/smash/web/views/notifications.py
index 31f749d8..0f7d4e66 100644
--- a/smash/web/views/notifications.py
+++ b/smash/web/views/notifications.py
@@ -123,7 +123,7 @@ def get_subjects_with_no_visit(user):
 
 
 def get_subjects_with_reminder(user):
-    tomorrow = get_today_midnight_date() + datetime.timedelta(days=1)
+    tomorrow = datetime.datetime.now() + datetime.timedelta(hours=1)
 
     result = Subject.objects.filter(
         dead=False,
-- 
GitLab