diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-09-02 05:55:10 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-09-02 05:55:10 +0000 |
| commit | d0a28c9837f9ffac259d16db3703b2e74195ccad (patch) | |
| tree | dc407883e6415873ee7944558767015f33a8494c /lib/python/Screens/About.py | |
| parent | c46216a8e07d97647287aeba0281f226b1ba05e9 (diff) | |
| download | enigma2-d0a28c9837f9ffac259d16db3703b2e74195ccad.tar.gz enigma2-d0a28c9837f9ffac259d16db3703b2e74195ccad.zip | |
show free hdd space in aboutbox
Diffstat (limited to 'lib/python/Screens/About.py')
| -rw-r--r-- | lib/python/Screens/About.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index de9d6936..f6b14138 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -16,7 +16,7 @@ class About(Screen): self["hdd"] = Label("Detected HDD:") hdd = Harddisk(0) - self["hddA"] = Label("%s (%s)" % (hdd.model(), hdd.capacity())) + self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free())) self["actions"] = ActionMap(["SetupActions"], { |
