summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xindex.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/index.py b/index.py
index bd0a491..367b5a5 100755
--- a/index.py
+++ b/index.py
@@ -24,16 +24,10 @@ create_form = form.Form(
class index:
def GET(self):
- return self.POST();
-
- def POST(self):
return render.index()
class spam:
def GET(self):
- return self.POST();
-
- def POST(self):
return render.spam()
class new: