diff --git a/usr/lib/bulky/bulky.py b/usr/lib/bulky/bulky.py index 567cd13..0d05af6 100755 --- a/usr/lib/bulky/bulky.py +++ b/usr/lib/bulky/bulky.py @@ -437,13 +437,7 @@ def open_about(self, widget): dlg.set_title(_("About")) dlg.set_program_name("Bulky") dlg.set_comments(_("Rename Files")) - try: - with open('/usr/share/common-licenses/GPL-3', encoding="utf-8") as h: - gpl= h.read() - dlg.set_license(gpl) - except Exception as e: - print (e) - + dlg.set_license_type(Gtk.License.GPL_3_0) dlg.set_version("__DEB_VERSION__") dlg.set_icon_name("bulky") dlg.set_logo_icon_name("bulky")