add HarddiskSetup
[vuplus_dvbapp] / lib / python / Screens / HarddiskSetup.py
1 from Screen import Screen
2 from Components.ActionMap import ActionMap
3
4 class HarddiskSelection(Screen):
5   def __init__(self, session):
6     Screen.__init__(self, session)
7
8     self["actions"] = ActionMap(["OkCancelActions"],
9       {
10         "cancel": self.close
11       })