diff options
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' |
