summaryrefslogtreecommitdiff
path: root/docs/wiki-example-code
diff options
context:
space:
mode:
authorIan Bicking <ianb@colorstudy.com>2008-11-05 22:30:26 +0000
committerIan Bicking <ianb@colorstudy.com>2008-11-05 22:30:26 +0000
commit619cbe7a40eb3e9bbc5654400d65b97c8337048e (patch)
tree4e0cce37d74558632580dadbdb8c5695a1a6ab90 /docs/wiki-example-code
parentf62805884275c82a648a8aeff2e5655901401451 (diff)
downloadwebob-619cbe7a40eb3e9bbc5654400d65b97c8337048e.tar.gz
typo in wiki example code
Diffstat (limited to 'docs/wiki-example-code')
-rw-r--r--docs/wiki-example-code/example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/wiki-example-code/example.py b/docs/wiki-example-code/example.py
index c76ffa7..8caa1cd 100644
--- a/docs/wiki-example-code/example.py
+++ b/docs/wiki-example-code/example.py
@@ -75,7 +75,7 @@ class WikiApp(object):
path = path.lstrip('/')
if not path:
path = 'index'
- path = os.path.join(self.storage_dir)
+ path = os.path.join(self.storage_dir, path)
path = os.path.normpath(path)
if path.endswith('/'):
path += 'index'