diff --git a/isso/views/comment.py b/isso/views/comment.py index f770b44..58b98c0 100644 --- a/isso/views/comment.py +++ b/isso/views/comment.py @@ -97,7 +97,7 @@ def new(app, environ, request, uri): except db.IssoDBException: abort(403) - host = app.conf.get('general', 'host').rstrip("/") + host = list(app.conf.getiter('general', 'host'))[0].rstrip("/") href = host + uri + "#isso-%i" % rv["id"] deletion = host + environ["SCRIPT_NAME"] + "/delete/" + app.sign(str(rv["id"]))