aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/CleanupWizard
diff options
context:
space:
mode:
authoracid-burn <acidburn@opendreambox.org>2009-09-01 17:11:39 +0200
committeracid-burn <acidburn@opendreambox.org>2009-09-01 17:11:39 +0200
commitffb0dd9e6ec7741b62a6f382000a237bde12e561 (patch)
treeb670a6089383652689988414201d61e6e8293005 /lib/python/Plugins/SystemPlugins/CleanupWizard
parentf4f3ff0f6bac194589233d2211f3e0572e3a1c90 (diff)
downloadenigma2-ffb0dd9e6ec7741b62a6f382000a237bde12e561.tar.gz
enigma2-ffb0dd9e6ec7741b62a6f382000a237bde12e561.zip
CleanupWizard/plugin.py: fix typo
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/CleanupWizard')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py b/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py
index c1af50d2..125f7844 100755
--- a/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py
@@ -10,7 +10,7 @@ print "[CleanupWizard] freeSpaceAvailable-->",freeSpace
if freeSpace is None:
internalMemoryExceeded = 0
-elif int(freeSpace) <= 12048:
+elif int(freeSpace) <= 2048:
internalMemoryExceeded = 1
else:
internalMemoryExceeded = 0