taler-merchant-demos

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

commit d65604647318a95f77970a64bbe5f24905e26b3f
parent a1e223a310f262efb324f9ee958f0afc27a3ed80
Author: MS <ms@taler.net>
Date:   Tue, 11 May 2021 09:40:34 +0200

error handling

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

diff --git a/talermerchantdemos/donations/donations.py b/talermerchantdemos/donations/donations.py @@ -243,7 +243,7 @@ def donate(lang): if not order_resp: return err_abort( - order_resp.status_code, + 500, # FIXME: status code got lost in the httpcommon module. message=gettext("Backend could not create the order") )