From: Julien Moutinho Date: Fri, 8 Aug 2014 05:17:19 +0000 (+0200) Subject: fix hard coded vote url X-Git-Url: http://git.cyclocoop.org/?p=cavote.git;a=commitdiff_plain;h=b2be30fb3d98ac7a6d3f1d040a249cca7038bb21 fix hard coded vote url --- diff --git a/reminder.py b/reminder.py index d867ee8..7b7c07f 100644 --- a/reminder.py +++ b/reminder.py @@ -36,7 +36,7 @@ for vote in c.execute('select id, id_group, date_end, title from votes where is_ print userchoice if userchoice is None: #user didn't vote yet - link = "http://vote.ffdn.org/vote/%d" % vote[0] + link = VOTE_URL % vote[0] BODY = string.join(( "From: %s" % EMAIL, "To: %s" % user[1], @@ -60,7 +60,7 @@ for vote in c.execute('select id, id_group, date_end, title from votes where is_ server.sendmail(EMAIL, user[1], BODY.encode('utf-8')) server.quit() else: - link = "http://vote.ffdn.org/vote/%d" % vote[0] + link = VOTE_URL % vote[0] BODY = string.join(( "From: %s" % EMAIL, "To: %s" % user[1],