diff --git a/usr/lib/linuxmint/mintMenu/mintMenu.py b/usr/lib/linuxmint/mintMenu/mintMenu.py index 13bf0b9..9ee3b75 100755 --- a/usr/lib/linuxmint/mintMenu/mintMenu.py +++ b/usr/lib/linuxmint/mintMenu/mintMenu.py @@ -581,13 +581,9 @@ class MenuWin(object): def showAboutDialog(self, action, userdata = None): about = Gtk.AboutDialog() - about.set_name("mintMenu") + about.set_program_name("mintMenu") about.set_version("__DEB_VERSION__") - try: - gpl = open('/usr/share/common-licenses/GPL','r').read() - about.set_license(gpl) - except Exception as e: - print(e) + about.set_license_type(Gtk.License.GPL_3_0) about.set_comments(_("Advanced MATE Menu")) # about.set_authors(["Clement Lefebvre ", "Lars-Peter Clausen "]) about.set_translator_credits(("translator-credits"))