aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/About.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-01 20:37:05 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-01 20:37:05 +0000
commit1bd4065bcdb4c438f986e8ec0e19dfef9550d402 (patch)
treeceee8d533de53aa5702fec8ed1f9576d00582dc4 /lib/python/Screens/About.py
parent48dce974f57f2a7f875787c2bbcb594531dce1c0 (diff)
downloadenigma2-1bd4065bcdb4c438f986e8ec0e19dfef9550d402.tar.gz
enigma2-1bd4065bcdb4c438f986e8ec0e19dfef9550d402.zip
use image-version from /etc/image-version as version in e2 about box
Diffstat (limited to 'lib/python/Screens/About.py')
-rw-r--r--lib/python/Screens/About.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py
index 2e267a07..5bd5f273 100644
--- a/lib/python/Screens/About.py
+++ b/lib/python/Screens/About.py
@@ -4,12 +4,13 @@ from Components.Label import Label
from Components.Harddisk import Harddisk
from Components.NimManager import nimmanager
from Components.MenuList import MenuList
+from Components.About import about
class About(Screen):
def __init__(self, session):
Screen.__init__(self, session)
- self["text"] = Label("Enigma v2.0b")
+ self["text"] = Label("Enigma v" + about.getVersionString())
self["tuner"] = Label(_("Detected NIMs:"))