gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-bank] branch master updated: syntax/typo


From: gnunet
Subject: [GNUnet-SVN] [taler-bank] branch master updated: syntax/typo
Date: Tue, 20 Feb 2018 11:51:25 +0100

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

dold pushed a commit to branch master
in repository bank.

The following commit(s) were added to refs/heads/master by this push:
     new 57b11ae  syntax/typo
57b11ae is described below

commit 57b11aea0f649ebf5993a0be686ac48339bfc69b
Author: Florian Dold <address@hidden>
AuthorDate: Tue Feb 20 11:51:21 2018 +0100

    syntax/typo
---
 talerbank/app/views.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/talerbank/app/views.py b/talerbank/app/views.py
index 8c05868..2dd121e 100644
--- a/talerbank/app/views.py
+++ b/talerbank/app/views.py
@@ -423,13 +423,13 @@ def query_history(bank_account, direction, delta, start, 
sign):
 def query_history_raw(bank_account, direction, start, sign):
     direction_switch = {
         "both": (Q(debit_account=bank_account) |
-                 Q(credit_account=bank_account))
+                 Q(credit_account=bank_account)),
         "credit": Q(credit_account=bank_account),
         "debit": Q(debit_account=bank_account),
         "cancel+": (Q(credit_account=bank_account) &
                     Q(cancelled=True)),
         "cancel-": (Q(debit_account=bank_account) &
-                    Q(cancelled=True))
+                    Q(cancelled=True)),
     }
 
     sign_filter = {

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



reply via email to

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