Comment 1 for bug 44286

Revision history for this message
Elliott Hughes (enh) wrote :

here's a patch:

--- /usr/lib/python2.3/site-packages/GDebi/GDebi.py.orig 2006-05-11 17:19:56.000000000 -0700
+++ /usr/lib/python2.3/site-packages/GDebi/GDebi.py 2006-05-11 17:21:40.000000000 -0700
@@ -184,7 +184,7 @@
         self.label_maintainer.set_text(self._deb["Maintainer"])
         self.label_priority.set_text(self._deb["Priority"])
         self.label_section.set_text(self._deb["Section"])
- self.label_size.set_text(self._deb["Installed-Size"])
+ self.label_size.set_text(self._deb["Installed-Size"] + " KB")

         # set filelist
         buf = self.textview_filelist.get_buffer()

i've used "KB" like Nautilus, rather than the "KiB" recommended by "man units".

 --elliott