Comment 1 for bug 54282

Revision history for this message
Alexandre Otto Strube (surak) wrote : Re: No "try" statement in ubiquity when the LiveCD has any broken package - Dapper

If I change the following line (/usr/share/ubiquity/install.py - line 925)

from
                        assert cache._depcache.BrokenCount == 0

to
                    try:
                        assert cache._depcache.BrokenCount == 0
                    except AssertionError:
                        print >>sys.stderr, ("There are broken packages on the system. depcache.BrokenCount is not equal to zero.")

It will then fail later, as the attached syslog tells.