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:

Operasyon #659: görüntü
Tarih: 2009-03-08 14:41

  * Bu görüntüde 1118 paket mevcut.
    *
    *
    *
    *
    *
    *
    *
    *
    *
    *
    *
    ...
    ...
This commit is contained in:
Ozan Çağlayan
2009-03-08 13:03:35 +00:00
parent e1cc1d9669
commit 4eb9d94406
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2009-03-08 Ozan Çağlayan <ozan@pardus.org.tr>
* 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 <bahadir@pardus.org.tr>
* Merged Python 2.6 patch
+1 -1
View File
@@ -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):