We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35fdd9 commit 8443e2cCopy full SHA for 8443e2c
1 file changed
usr/lib/webapp-manager/webapp-manager.py
@@ -238,13 +238,7 @@ def open_about(self, widget):
238
dlg.set_title(_("About"))
239
dlg.set_program_name(_("Web Apps"))
240
dlg.set_comments(_("Run websites as if they were apps"))
241
- try:
242
- with open('/usr/share/common-licenses/GPL', encoding="utf-8") as h:
243
- gpl = h.read()
244
- dlg.set_license(gpl)
245
- except Exception as e:
246
- print(e)
247
-
+ dlg.set_license_type(Gtk.License.GPL_3_0)
248
dlg.set_version("__DEB_VERSION__")
249
dlg.set_icon_name("webapp-manager")
250
dlg.set_logo_icon_name("webapp-manager")
0 commit comments