aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/views')
-rw-r--r--pysite/views/__init__.py2
-rw-r--r--pysite/views/error_handlers/__init__.py2
-rw-r--r--pysite/views/error_handlers/http_404.py2
-rw-r--r--pysite/views/index.py2
4 files changed, 0 insertions, 8 deletions
diff --git a/pysite/views/__init__.py b/pysite/views/__init__.py
index ba286add..9bad5790 100644
--- a/pysite/views/__init__.py
+++ b/pysite/views/__init__.py
@@ -1,3 +1 @@
# coding=utf-8
-
-__author__ = "Gareth Coles"
diff --git a/pysite/views/error_handlers/__init__.py b/pysite/views/error_handlers/__init__.py
index ba286add..9bad5790 100644
--- a/pysite/views/error_handlers/__init__.py
+++ b/pysite/views/error_handlers/__init__.py
@@ -1,3 +1 @@
# coding=utf-8
-
-__author__ = "Gareth Coles"
diff --git a/pysite/views/error_handlers/http_404.py b/pysite/views/error_handlers/http_404.py
index eea1e630..1d557d9b 100644
--- a/pysite/views/error_handlers/http_404.py
+++ b/pysite/views/error_handlers/http_404.py
@@ -3,8 +3,6 @@ from werkzeug.exceptions import NotFound
from pysite.base_route import ErrorView
-__author__ = "Gareth Coles"
-
class Error404View(ErrorView):
name = "error_404"
diff --git a/pysite/views/index.py b/pysite/views/index.py
index 040332cc..0c2d1578 100644
--- a/pysite/views/index.py
+++ b/pysite/views/index.py
@@ -1,8 +1,6 @@
# coding=utf-8
from pysite.base_route import RouteView
-__author__ = "Gareth Coles"
-
class IndexView(RouteView):
path = "/"