diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/DiskInfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/DiskInfo.py b/lib/python/Components/DiskInfo.py index 1278ff99..0b7e0bcb 100644 --- a/lib/python/Components/DiskInfo.py +++ b/lib/python/Components/DiskInfo.py @@ -27,6 +27,6 @@ class DiskInfo(VariableText, GUIComponent): if self.type == self.FREE: free = stat.f_bfree / 1000 * stat.f_bsize / 1000 - self.setText(("%dMB " + _("free diskspace")) % (free)) + self.setText(("%d MB " + _("free diskspace")) % (free)) GUI_WIDGET = eLabel |
