From 436793606a9571b499031a313b65b5997cbe0e32 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Wed, 10 Feb 2016 05:27:55 +0100 Subject: [PATCH] =?utf8?q?[bde/stats/depenses]=20Inversion=20gain/d=C3=A9p?= =?utf8?q?enses?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Il me semblait pourtant avoir déjà corrigé ce truc… --- bde/stats/depenses.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bde/stats/depenses.py b/bde/stats/depenses.py index fff63d3..a5b02c4 100755 --- a/bde/stats/depenses.py +++ b/bde/stats/depenses.py @@ -68,7 +68,7 @@ def get_depenses(idbde, bymonth=False): def display_depenses(idbde, all, tot, bymonth=False): """Pretty-printing des résultats.""" month = "\tmois" if bymonth else "" - print "Compte %s:\nannee%s\tgains\t\tdépenses" % (idbde, month) + print "Compte %s:\nannee%s\tdépenses\tgains" % (idbde, month) for li in all: if bymonth: li = [int(li[0]), int(li[1]), li[2], li[3]] @@ -76,7 +76,7 @@ def display_depenses(idbde, all, tot, bymonth=False): else: li = [int(li[0]), li[1], li[2]] print "%s\t%s\t\t%s" % tuple(li) - print "\nTotal :\n\tgains\t\tdépenses" + print "\nTotal :\n\tdépenses\tgains" print "\t%s\t\t%s\n" % tuple(tot) if __name__ == "__main__": -- 2.39.2