diff options
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py | 2 |
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 |
