~barry/ubuntu/lucid/update-manager/fix-511628

« back to all changes in this revision

Viewing changes to DistUpgrade/DistUpgradeViewGtk.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-02-25 21:54:57 UTC
  • Revision ID: james.westby@ubuntu.com-20100225215457-i0a2m5322nvha395
Tags: 1:0.132.1
* rename update-manager-support-status to ubuntu-support-status
* check-new-release-gtk:
  - add gtk tool for release notification that is designed to be
    run from update-notifier (desktop-lucid-update-upgrade-requirements)
* DistUpgrade/DistUpgradeCache.py:
  - fix crash in cleanup code
  - fix crash when /home is missing (LP: #463506)
  - fix component inconsitency detection debug output
* DistUpgrade/DistUpgradeViewGtk.py:
  - remove old code that moved to python-apt
* DistUpgrade/DistUpgradeController.py:
  - if universe is not enabled, explain that the demoted packages
    will be suggested for removal in the cleanup stage
* UpdateManager/Core/MetaRelease.py:
  - fix urlopen() crash on hardy->lucid cdrom upgrades

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
        self.label_status.set_text("")
295
295
    
296
296
    def updateInterface(self):
297
 
        try:
298
 
          InstallProgress.updateInterface(self)
299
 
        except ValueError, e:
300
 
          logging.error("got ValueError from InstallProgress.updateInterface. Line was '%s' (%s)" % (self.read, e))
301
 
          # reset self.read so that it can continue reading and does not loop
302
 
          self.read = ""
 
297
        InstallProgress.updateInterface(self)
303
298
        # check if we haven't started yet with packages, pulse then
304
299
        if self.start_time == 0.0:
305
300
          self.progress.pulse()