aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-18 21:42:44 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-18 21:42:44 +0100
commit68f4182a9c69bf8ee35c3b6b764b4ab449c283a4 (patch)
tree43308c00b85594035d328cec566f5fc44fe2d1a5 /src
parentwe now specify the validity period of the activation link. (diff)
downloadnewspipe-68f4182a9c69bf8ee35c3b6b764b4ab449c283a4.tar.gz
newspipe-68f4182a9c69bf8ee35c3b6b764b4ab449c283a4.tar.bz2
newspipe-68f4182a9c69bf8ee35c3b6b764b4ab449c283a4.zip
Import of datetime.
Diffstat (limited to 'src')
-rw-r--r--src/web/notifications.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/notifications.py b/src/web/notifications.py
index 19562fad..4f276123 100644
--- a/src/web/notifications.py
+++ b/src/web/notifications.py
@@ -1,7 +1,7 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
-# jarr - A Web based news aggregator.
+# JARR - A Web based news aggregator.
# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/JARR-aggregator/JARR/
@@ -19,6 +19,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+import datetime
from flask import render_template
import conf
from web import emails
bgstack15