aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-04-27 15:10:37 +0200
committerWojtek Kosior <koszko@koszko.org>2022-04-27 15:10:37 +0200
commit8084a0711ff850ed8103b1fe7c1b557529ea75d4 (patch)
tree331ceff9a90074880a82debd46d02ba6ce9a00b1
parent17be770f9d55a9005b546e0f969af078fb359390 (diff)
downloadhaketilo-hydrilla-8084a0711ff850ed8103b1fe7c1b557529ea75d4.tar.gz
haketilo-hydrilla-8084a0711ff850ed8103b1fe7c1b557529ea75d4.zip
fix bug in the sample WSGI script
-rw-r--r--doc/examples/hydrilla.wsgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/hydrilla.wsgi b/doc/examples/hydrilla.wsgi
index 70dd895..480722d 100644
--- a/doc/examples/hydrilla.wsgi
+++ b/doc/examples/hydrilla.wsgi
@@ -23,5 +23,6 @@ application = start_wsgi(standalone_mode=False)
# Comment the above and uncomment this to use a different config file.
#from hydrilla.server import config
+#from pathlib import Path
#application = start_wsgi(standalone_mode=False,
-# obj=config.load(['/path/to/config.json']))
+# obj=config.load([Path('/path/to/config.json')]))