gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-blog] branch master updated: urlencode doesn't like


From: gnunet
Subject: [GNUnet-SVN] [taler-blog] branch master updated: urlencode doesn't like single strings ...
Date: Sat, 24 Aug 2019 12:56:00 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository blog.

The following commit(s) were added to refs/heads/master by this push:
     new d8286ee  urlencode doesn't like single strings ...
d8286ee is described below

commit d8286ee396fa04335d900f6c65703fc7a528242b
Author: Florian Dold <address@hidden>
AuthorDate: Sat Aug 24 12:55:55 2019 +0200

    urlencode doesn't like single strings ...
---
 talerblog/blog/blog.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/talerblog/blog/blog.py b/talerblog/blog/blog.py
index e35dd0e..5f7d578 100644
--- a/talerblog/blog/blog.py
+++ b/talerblog/blog/blog.py
@@ -17,6 +17,7 @@
 # @author Marcello Stanisci
 # @brief Implementation of a Taler-compatible blog.
 
+import urllib.parse
 from urllib.parse import urljoin, quote, urlencode
 import logging
 import os
@@ -335,7 +336,7 @@ def article(article_name, data=None):
                 "X-Taler-Resource-Url": resource_url,
         }
 
-        qrcode_data = "talerpay:" + urlencode(contract_url) + ";" + session_id
+        qrcode_data = "talerpay:" + urllib.parse.quote_plus(contract_url) + 
";" + session_id
         qrcode_svg = get_qrcode_svg(qrcode_data)
         content = flask.render_template("templates/request_payment.html",
                                          article_name=article_name,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]