aboutsummaryrefslogtreecommitdiff
path: root/src/web/__init__.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 13:27:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 13:27:52 +0200
commit9c8a6d28ac5780ca0634e0757e97fba0c5b4817e (patch)
tree483ae87d84c2c0219149968c1a27034513169600 /src/web/__init__.py
parentvalidate app.json (diff)
parentfixed postdeploy script. (diff)
downloadnewspipe-9c8a6d28ac5780ca0634e0757e97fba0c5b4817e.tar.gz
newspipe-9c8a6d28ac5780ca0634e0757e97fba0c5b4817e.tar.bz2
newspipe-9c8a6d28ac5780ca0634e0757e97fba0c5b4817e.zip
merge and fixed conflict
Diffstat (limited to 'src/web/__init__.py')
-rw-r--r--src/web/__init__.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/web/__init__.py b/src/web/__init__.py
index e69de29b..cca2a501 100644
--- a/src/web/__init__.py
+++ b/src/web/__init__.py
@@ -0,0 +1,8 @@
+__author__ = "Cedric Bonhomme"
+__version__ = "$Revision: 7.1.3 $"
+__date__ = "$Date: 2016/11/14 $"
+__revision__ = "$Date: 2016/11/14 $"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
+__license__ = "GPLv3"
+
+__all__ = [__version__]
bgstack15