aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-23 05:21:21 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-23 05:21:21 +0000
commitb1cb9892c9da7a9ca9202b60f0f280fb6335e95a (patch)
tree17c22239fa821206cbf66a404888a2982589109c /lib
parentde1577cd98d43c40c7ac23bfae6ca326aa44f7d0 (diff)
downloadenigma2-b1cb9892c9da7a9ca9202b60f0f280fb6335e95a.tar.gz
enigma2-b1cb9892c9da7a9ca9202b60f0f280fb6335e95a.zip
add forgotten file
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/RecordingConfig.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/python/Components/RecordingConfig.py b/lib/python/Components/RecordingConfig.py
new file mode 100644
index 00000000..cf65f747
--- /dev/null
+++ b/lib/python/Components/RecordingConfig.py
@@ -0,0 +1,9 @@
+from config import *
+import os
+from enigma import *
+
+def InitRecordingConfig():
+ config.recording = ConfigSubsection();
+ config.recording.asktozap = configElement("config.recording.asktozap", configSelection, 1, (_("yes"), _("no")) );
+
+