diff options
author | Papoteur <papoteur@mageia.org> | 2018-03-31 09:04:07 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-03-31 09:18:29 +0200 |
commit | 1c0f68a179c2a2d32c24837a4ac90621f4ca9804 (patch) | |
tree | 73b9d84ebdc005be27b4099e82b79a620bbbda0e /isodumper | |
parent | 7dcc155b89eb7c0b9aa26e4cefce087ba826c18e (diff) | |
download | isodumper-1c0f68a179c2a2d32c24837a4ac90621f4ca9804.tar isodumper-1c0f68a179c2a2d32c24837a4ac90621f4ca9804.tar.gz isodumper-1c0f68a179c2a2d32c24837a4ac90621f4ca9804.tar.bz2 isodumper-1c0f68a179c2a2d32c24837a4ac90621f4ca9804.tar.xz isodumper-1c0f68a179c2a2d32c24837a4ac90621f4ca9804.zip |
Adjust installing process
Diffstat (limited to 'isodumper')
-rwxr-xr-x | isodumper | 25 |
1 files changed, 9 insertions, 16 deletions
@@ -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() |