Operasyon #2136: güncelle

Tarih: 2009-03-09 10:37

    * 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.
This commit is contained in:
Faik Uygur
2009-03-09 12:15:32 +00:00
parent 4eb9d94406
commit 764a056b46
2 changed files with 4 additions and 7 deletions
+2 -5
View File
@@ -1,8 +1,5 @@
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-03-09 Faik Uygur <faik@pardus.org.tr>
* Fix pisi hs output for snapshot printing empty "*"
2009-02-13 Bahadır Kandemir <bahadir@pardus.org.tr>
* Merged Python 2.6 patch
+2 -2
View File
@@ -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):