Fixes #36@

This commit is contained in:
Jguer 2017-07-05 22:21:58 +01:00
parent 2ea7510093
commit a27a0d329d

View file

@ -326,7 +326,6 @@ func HangingPackages() (hanging []string, err error) {
requiredby := pkg.ComputeRequiredBy()
if len(requiredby) == 0 {
hanging = append(hanging, pkg.Name())
fmt.Println(pkg.ISize())
fmt.Printf("%s: \x1B[0;33m%.2f KiB\x1B[0m\n", pkg.Name(), float32(pkg.ISize())/(1024.0))
}