diff options
| author | Mladen Horvat <acid-burn@opendreambox.org> | 2009-12-09 07:39:59 +0100 |
|---|---|---|
| committer | Mladen Horvat <acid-burn@opendreambox.org> | 2009-12-09 07:39:59 +0100 |
| commit | 25af2f392e5a88feb892d7bb2c889256dd74abbb (patch) | |
| tree | a45acc261a01e2fd0afddd1c30dc3143008d459a /lib/python | |
| parent | 7b46b591444685733d1fb3af5c814e0a93cf4d5f (diff) | |
| download | enigma2-25af2f392e5a88feb892d7bb2c889256dd74abbb.tar.gz enigma2-25af2f392e5a88feb892d7bb2c889256dd74abbb.zip | |
SoftwareManager/BackupRestore.py: save configuration to settingsfile before doing a backup, so now should all settings be saved before a backup is done and no gui restart is needed anymore.
This fixes #351
Diffstat (limited to 'lib/python')
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py index 871f0a30..d9ccab57 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py @@ -66,6 +66,7 @@ class BackupScreen(Screen, ConfigListScreen): self.setTitle(_("Backup is running...")) def doBackup(self): + configfile.save() try: if (path.exists(self.backuppath) == False): makedirs(self.backuppath) |
