diff options
| author | Ian Bicking <ianb@colorstudy.com> | 2008-11-05 22:30:26 +0000 |
|---|---|---|
| committer | Ian Bicking <ianb@colorstudy.com> | 2008-11-05 22:30:26 +0000 |
| commit | 619cbe7a40eb3e9bbc5654400d65b97c8337048e (patch) | |
| tree | 4e0cce37d74558632580dadbdb8c5695a1a6ab90 /docs/wiki-example-code | |
| parent | f62805884275c82a648a8aeff2e5655901401451 (diff) | |
| download | webob-619cbe7a40eb3e9bbc5654400d65b97c8337048e.tar.gz | |
typo in wiki example code
Diffstat (limited to 'docs/wiki-example-code')
| -rw-r--r-- | docs/wiki-example-code/example.py | 2 |
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' |
