summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/nf/views/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'lcm/lcm/nf/views/common.py')
-rw-r--r--lcm/lcm/nf/views/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/lcm/nf/views/common.py b/lcm/lcm/nf/views/common.py
index 4f864263..a57a93e1 100644
--- a/lcm/lcm/nf/views/common.py
+++ b/lcm/lcm/nf/views/common.py
@@ -53,7 +53,7 @@ def view_safe_call_with_log(logger):
except NFLCMExceptionSeeOther as e:
logger.error(e.message)
resp = Response(status=status.HTTP_303_SEE_OTHER)
- resp["Location"] = ""
+ resp["Location"] = e.message
# resp["Location"] = "subscriptions/%s" % e.id
return resp
except NFLCMExceptionNotFound as e: