diff options
| author | 2010-04-02 15:49:16 +0200 | |
|---|---|---|
| committer | 2010-04-02 15:49:16 +0200 | |
| commit | 352fc3aed1b52fd3d55451778ba50285e94f6b18 (patch) | |
| tree | 0b5ab4713daa5a1e6f1f9809077b81d6e6f1baa7 /pyLoadCore.py | |
| parent | merged (diff) | |
| download | pyload-352fc3aed1b52fd3d55451778ba50285e94f6b18.tar.xz | |
unit fix
Diffstat (limited to 'pyLoadCore.py')
| -rwxr-xr-x | pyLoadCore.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/pyLoadCore.py b/pyLoadCore.py index 5014ed264..efaf06692 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -266,8 +266,8 @@ class Core(object):              pass          freeSpace = self.freeSpace() -        if freeSpace > 10000: -            self.logger.info(_("Free space: %sGB") % (freeSpace / 1000)) +        if freeSpace > 10 * 1024: +            self.logger.info(_("Free space: %sGB") % (freeSpace / 1024))          else:              self.logger.info(_("Free space: %sMB") % self.freeSpace()) | 
