aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/DiskInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/DiskInfo.py b/lib/python/Components/DiskInfo.py
index 6f16b053..68674e99 100644
--- a/lib/python/Components/DiskInfo.py
+++ b/lib/python/Components/DiskInfo.py
@@ -26,7 +26,7 @@ class DiskInfo(GUIComponent, VariableText):
if self.type == self.FREE:
free = stat.f_bfree / 1000 * stat.f_bsize / 1000
- self.setText("%dMB " + _("free diskspace") % (free))
+ self.setText(("%dMB " + _("free diskspace")) % (free))
def createWidget(self, parent):
return eLabel(parent)