Public bug reported:

Binary package hint: apport

If you check and compare what apport said if you want to submit a
complete report to launchpad there is an inconsistence between what
nautilus has and apport show us. this should be a related to this
function in apport/ui.py

 def format_filesize(self, size):
        '''Format the given integer as humanly readable and i18n'ed file 
size.'''

        if size < 1000000:
            return locale.format('%.1f', size/1000.) + ' KB'
        if size < 1000000000:
            return locale.format('%.1f', size / 1000000.) + ' MB'
        return locale.format('%.1f', size / float(1000000000)) + ' GB'

In resume, this inconsistence could avoid to our users to do not submit
their full reports because they may think that are sending 100MB to
Launchpad (if you have a super mega internet conection there isn't a
problem but for whole normal users could be frustrating)

** Affects: apport (Ubuntu)
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/742010

Title:
  size for a complete report is incorrect

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to