aboutsummaryrefslogtreecommitdiffstats
path: root/lib/isodumper.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/isodumper.py')
-rwxr-xr-xlib/isodumper.py4
1 files changed, 3 insertions, 1 deletions
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)