aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-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")) );
+
+