aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-29 07:39:19 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-29 07:39:19 +0200
commitee8c462bbeb3677b04fca4bd4ede0dd3d2b69393 (patch)
tree47ee2f87828c8c215a54717648d7e4cf05e4b40e /src/web/forms.py
parentImproved the Web services processors. (diff)
downloadnewspipe-ee8c462bbeb3677b04fca4bd4ede0dd3d2b69393.tar.gz
newspipe-ee8c462bbeb3677b04fca4bd4ede0dd3d2b69393.tar.bz2
newspipe-ee8c462bbeb3677b04fca4bd4ede0dd3d2b69393.zip
All preprocessors for the v3 Article Web service are implemented.
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index 85980791..c0526512 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -4,7 +4,7 @@
# JARR - A Web based news aggregator.
# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : http://github.com/JARR-aggregator/JARR/
+# For more information : http://github.com/JARR/JARR
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -26,7 +26,6 @@ __revision__ = "$Date: 2015/05/06 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
-
from flask import flash, url_for, redirect
from flask.ext.wtf import Form
from flask.ext.babel import lazy_gettext
bgstack15