From 764a056b46d14c8d85af99ec5dcc3900d15cf18f Mon Sep 17 00:00:00 2001 From: Faik Uygur Date: Mon, 9 Mar 2009 12:15:32 +0000 Subject: [PATCH] =?UTF-8?q?Operasyon=20#2136:=20g=C3=BCncelle=20Tarih:=202?= =?UTF-8?q?009-03-09=2010:37?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * git Operasyon #2135: kur Tarih: 2009-03-09 10:10 * package-manager Operasyon #2134: kaldır Tarih: 2009-03-09 09:46 * transKode * amarok * kipi-plugins * libgpod * lastfm Really fix pisi hs output of snapshots printing "*" for every package in that snapshot and update changelog. --- ChangeLog | 7 ++----- pisi/cli/history.py | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index b676eb0c..dbd7007c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,5 @@ -2009-03-08 Ozan Çağlayan - * pisi/cli/history.py(History.print_history): pkg.name should be - printed instead of pkg. Thanks İbrahim for noticing this bug causing - pisi hs output to contain only '*' character for every package in a - snapshot. +2009-03-09 Faik Uygur + * Fix pisi hs output for snapshot printing empty "*" 2009-02-13 Bahadır Kandemir * Merged Python 2.6 patch diff --git a/pisi/cli/history.py b/pisi/cli/history.py index 3e5bcea7..78bebba7 100644 --- a/pisi/cli/history.py +++ b/pisi/cli/history.py @@ -70,12 +70,12 @@ Lists previous operations.""") if operation.type == "snapshot": print _(" * There are %d packages in this snapshot.") % len(operation.packages) - if operation.type == "repoupdate": + elif operation.type == "repoupdate": for repo in operation.repos: print " *", repo else: for pkg in operation.packages: - print " *", pkg.name + print " *", pkg print def redirect_output(self):