diff options
author | Michael Vogt <mvo@debian.org> | 2014-05-08 14:31:10 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-05-08 14:31:10 +0200 |
commit | 722c387941f8d313fe18b61828fb82a0bbca5dad (patch) | |
tree | dc8f9d9a7e47b41adbd972366f63387dc101c0c7 /apt-private | |
parent | 4bcb5f4b531ccab5540e9a0554ce59b3724f7660 (diff) |
apt-private/acqprogress.cc: do not show file size on IMSHit, it wasn't fetched, so why bother
Diffstat (limited to 'apt-private')
-rw-r--r-- | apt-private/acqprogress.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apt-private/acqprogress.cc b/apt-private/acqprogress.cc index ee6c4536f..4bcfd8f00 100644 --- a/apt-private/acqprogress.cc +++ b/apt-private/acqprogress.cc @@ -64,8 +64,6 @@ void AcqTextStatus::IMSHit(pkgAcquire::ItemDesc &Itm) cout << '\r' << BlankLine << '\r'; cout << _("Hit ") << Itm.Description; - if (Itm.Owner->FileSize != 0) - cout << " [" << SizeToStr(Itm.Owner->FileSize) << "B]"; cout << endl; Update = true; } |