diff --git a/ChangeLog b/ChangeLog index 0917111d..b676eb0c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +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-02-13 Bahadır Kandemir * Merged Python 2.6 patch diff --git a/pisi/cli/history.py b/pisi/cli/history.py index 724559f4..3e5bcea7 100644 --- a/pisi/cli/history.py +++ b/pisi/cli/history.py @@ -75,7 +75,7 @@ Lists previous operations.""") print " *", repo else: for pkg in operation.packages: - print " *", pkg + print " *", pkg.name print def redirect_output(self):