From a5c8f17a12e2c533ec2d5b22548aa2d8894525aa Mon Sep 17 00:00:00 2001 From: Papoteur Date: Mon, 3 Jul 2023 12:46:15 +0200 Subject: Close magiback when closing isodumper Keep the authorization one hour Add the -d option for debug --- lib/isodumper.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/isodumper.py b/lib/isodumper.py index c7a61b4..75ac4e7 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -1487,6 +1487,8 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog yui.YDialog.deleteAllDialogs() # Closing # restore old application title + if hasattr(self, 'iface'): + self.iface.close() yui.YUI.app().setApplicationTitle(self.backupTitle) self.dialog.destroy() self.dialog = None @@ -1500,7 +1502,7 @@ if __name__ == "__main__": log = yui.YUILog.setLogFileName("/dev/null") parser = ParseCLI("isodumper") parser.parser.add_argument( - "--debug", help=_("allow debug information"), action="store_true" + "-d", "--debug", help=_("allow debug information"), action="store_true" ) if parser.args.version: print(version.RELEASE) -- cgit v1.2.1