aboutsummaryrefslogtreecommitdiffstats
path: root/isodumper
diff options
context:
space:
mode:
Diffstat (limited to 'isodumper')
-rwxr-xr-xisodumper25
1 files changed, 9 insertions, 16 deletions
diff --git a/isodumper b/isodumper
index b9a21a6..df1b890 100755
--- a/isodumper
+++ b/isodumper
@@ -1,16 +1,9 @@
-#!/bin/sh
-#
-
-# Copyright (C) 2013 THE isodumper'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the isodumper package.
-
-# Author isodumper software= papoteur <papoteur@mageialinux-online.org>
-# Author binary file= Geiger David <david.david@mageialinux-online.org>
-
-set -e
-
-TERM=xterm
-
-DIR=/usr/lib/isodumper
-
-python3 $DIR/isodumper.py
+#!/usr/bin/python3
+from isodumper import isodumper
+import yui
+
+app = isodumper.IsoDumper()
+app.run()
+# next line seems to be a workaround to prevent the qt-app from crashing
+# see https://github.com/libyui/libyui-qt/issues/41
+yui.YUILoader.deleteUI()