remove hardcoded path from exception text
diff --git a/planetstack/core/middleware.py b/planetstack/core/middleware.py
index 1401cd6..54267e3 100644
--- a/planetstack/core/middleware.py
+++ b/planetstack/core/middleware.py
@@ -4,7 +4,7 @@
def get_request():
if not hasattr(_active, "request"):
- raise Exception("Please add 'core.middleware.GlobalRequestMiddleware' to /opt/planetstack/planetstack/settings.py:MIDDLEWARE_CLASSES")
+ raise Exception("Please add 'core.middleware.GlobalRequestMiddleware' to <XOS_DIR>/planetstack/settings.py:MIDDLEWARE_CLASSES")
return _active.request
class GlobalRequestMiddleware(object):