summaryrefslogtreecommitdiff
path: root/talerblog/blog/blog.py
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-05 16:24:46 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-05 16:24:46 +0100
commit2a17c7fafacc03fde148ca89c359a83d096c3e49 (patch)
treebe9b7939c6daa8a334b113bd8b1bb8f04f21efb5 /talerblog/blog/blog.py
parentb879ff93839b566b7b0aeef1c6b6707e4e5eac8d (diff)
downloadblog-2a17c7fafacc03fde148ca89c359a83d096c3e49.tar.gz
blog-2a17c7fafacc03fde148ca89c359a83d096c3e49.tar.bz2
blog-2a17c7fafacc03fde148ca89c359a83d096c3e49.zip
typo / missing namespace
Diffstat (limited to 'talerblog/blog/blog.py')
-rw-r--r--talerblog/blog/blog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/talerblog/blog/blog.py b/talerblog/blog/blog.py
index 8cb5763..e8bfa99 100644
--- a/talerblog/blog/blog.py
+++ b/talerblog/blog/blog.py
@@ -145,8 +145,8 @@ def article(name, data=None):
instance=INSTANCE,
contract_url=make_url("/generate-contract", ("article_name", name)),
session_id=session_id,
- session_sig=requests.args.get("session_sig"),
- order_id=requests.args.get("order_id"),
+ session_sig=flask.request.args.get("session_sig"),
+ order_id=flask.request.args.get("order_id"),
# URL that the browser will navigate to after the user has paid (or
# proved they already paid) with this session
confirm_url = make_url("/essay/" + name,