X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/323ac4a566f7c1ea9006eaf58eae915fac00071b..6db060dce242cd1990ae82f518ffa0beaee74d06:/lib/python/Screens/ImageWizard.py diff --git a/lib/python/Screens/ImageWizard.py b/lib/python/Screens/ImageWizard.py index f96ddadc..148eba52 100644 --- a/lib/python/Screens/ImageWizard.py +++ b/lib/python/Screens/ImageWizard.py @@ -1,9 +1,5 @@ from Wizard import Wizard, wizardManager -from Components.config import configElementBoolean, config -from Components.Pixmap import * - -from LanguageSelection import LanguageSelection from Tools.Directories import fileExists import os @@ -25,7 +21,7 @@ else: class ImageWizard(Wizard): skin = """ - + """ @@ -44,7 +40,7 @@ def doBackup(path): os.system('tar cvpf ' + path + backupfile + ' /etc/enigma2') def doRestore(path): - os.system('cd / && tar xvpf ' + path + backupfile + ' etc/enigma2') + os.system('cd / && /bin/tar xvpf ' + path + backupfile) \ No newline at end of file