summaryrefslogtreecommitdiff
path: root/docs/tutorials/lxmlgraph/step02/myapp/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/lxmlgraph/step02/myapp/views.py')
-rw-r--r--docs/tutorials/lxmlgraph/step02/myapp/views.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/tutorials/lxmlgraph/step02/myapp/views.py b/docs/tutorials/lxmlgraph/step02/myapp/views.py
deleted file mode 100644
index 75e390efb..000000000
--- a/docs/tutorials/lxmlgraph/step02/myapp/views.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from webob import Response
-
-def my_view(context, request):
- response = Response('Hello to %s from %s @ %s' % (
- context.tag,
- context.__name__,
- request.environ['PATH_INFO']))
- return response