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: fix unmatching variable


From: gnunet
Subject: [GNUnet-SVN] [taler-blog] branch master updated: fix unmatching variable name
Date: Mon, 08 Jan 2018 10:29:30 +0100

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

marcello pushed a commit to branch master
in repository blog.

The following commit(s) were added to refs/heads/master by this push:
     new d6b66a9  fix unmatching variable name
d6b66a9 is described below

commit d6b66a972c8379fb659857dfff9138093c5bca8c
Author: Marcello Stanisci <address@hidden>
AuthorDate: Mon Jan 8 10:29:16 2018 +0100

    fix unmatching variable name
---
 talerblog/blog/blog.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/talerblog/blog/blog.py b/talerblog/blog/blog.py
index 748ccac..4b4e08e 100644
--- a/talerblog/blog/blog.py
+++ b/talerblog/blog/blog.py
@@ -162,8 +162,8 @@ def article(name, data=None):
         return flask.render_template("templates/article_refunded.html", 
article_name=name)
 
     if pay_status.get("paid"):
-        articleInfo = ARTICLES.get(name)
-        if articleInfo is None:
+        article_info = ARTICLES.get(name)
+        if article_info is None:
             flask.abort(500)
         if data is not None:
             if data in article_info.extra_files:

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



reply via email to

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