fix frontend number query
[enigma2.git] / lib / python / Components / RecordingConfig.py
index 03719860cc8f161de0237f86394386042b374cae..d3a0daf2edbf4e52b21c1856b02818a9874b86bb 100644 (file)
@@ -1,5 +1,4 @@
 from config import ConfigInteger, ConfigYesNo, ConfigSubsection, config
-import os
 
 def InitRecordingConfig():
        config.recording = ConfigSubsection();
@@ -7,3 +6,4 @@ def InitRecordingConfig():
        config.recording.asktozap = ConfigYesNo(default=True)
        config.recording.margin_before = ConfigInteger(default=0, limits=(0,30))
        config.recording.margin_after = ConfigInteger(default=0, limits=(0,30))
+       config.recording.debug = ConfigYesNo(default = False)