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
692 stars 197 forks source link

fixing program crashed when cleaning old kernels #8

Closed bruiselee closed 12 years ago

bruiselee commented 12 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]):