taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

commit 1e32300d179d6a0b90078216f7129b99e6831459
parent 4a7b7898214c748e75cf63787dd8c805b4f102e0
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 11 Aug 2020 20:15:35 +0530

typo

Diffstat:
Mtalermerchantdemos/blog/blog.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/talermerchantdemos/blog/blog.py b/talermerchantdemos/blog/blog.py @@ -212,7 +212,7 @@ def article(article_name, data=None): # bound to a browser. This forces re-play and prevents sharing the article # by just sharing the URL. session_id = flask.session.get("session_id") - order_id = flask.session.args.get("order_id") + order_id = flask.session.get("order_id") if not session_id: session_id = flask.session["session_id"] = str(uuid.uuid4())