tualatrix / ubuntu-tweak

Ubuntu Tweak is a tool that makes it easy to configure your system and desktop settings. (This project is no longer under maintenance)
GNU General Public License v2.0
693 stars 197 forks source link

fixing program crashed when cleaning old kernels #8

Closed bruiselee closed 11 years ago

bruiselee commented 11 years ago

when rc version kernel is installed, oldkernel_plugin.py will crash in function _compare_kernel_version: if int(c2) > int(p2):

reason: c2 or p2 might be format as "030500rc1"

so just change above line as:

        if int(c2[:6]) > int(p2[:6]):