aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-23 00:59:19 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-23 00:59:19 +0000
commitece69e7e0ae5069dc5d7a89f826942be266a5052 (patch)
treeb0d7df4737f5c020549408129ee48e3050d18f40 /lib/python
parenta14583fd5980859930449db86d7ac19f6352d84a (diff)
downloadenigma2-ece69e7e0ae5069dc5d7a89f826942be266a5052.tar.gz
enigma2-ece69e7e0ae5069dc5d7a89f826942be266a5052.zip
fix settings restore in image update
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ImageWizard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ImageWizard.py b/lib/python/Screens/ImageWizard.py
index f96ddadc..e0e0dfea 100644
--- a/lib/python/Screens/ImageWizard.py
+++ b/lib/python/Screens/ImageWizard.py
@@ -44,7 +44,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