aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/EpgSelection.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-11-03 19:40:57 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-11-03 19:40:57 +0100
commit18469e4dedcfe75e8128b489774f79fb790a23da (patch)
tree23deb7ca13fe969e5966f2e3ca8951fc063fd0f2 /lib/python/Screens/EpgSelection.py
parentf488e1db5b364c4df7135008a3b073a1d0ba06ca (diff)
parent7560beb3e371704d798259ca1ea927bf4575306c (diff)
downloadenigma2-18469e4dedcfe75e8128b489774f79fb790a23da.tar.gz
enigma2-18469e4dedcfe75e8128b489774f79fb790a23da.zip
Merge branch 'bug_236_recordpath' into experimental
Diffstat (limited to 'lib/python/Screens/EpgSelection.py')
-rw-r--r--lib/python/Screens/EpgSelection.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/EpgSelection.py b/lib/python/Screens/EpgSelection.py
index 3dde7e22..f8edba11 100644
--- a/lib/python/Screens/EpgSelection.py
+++ b/lib/python/Screens/EpgSelection.py
@@ -6,6 +6,7 @@ from Components.Label import Label
from Components.EpgList import EPGList, EPG_TYPE_SINGLE, EPG_TYPE_SIMILAR, EPG_TYPE_MULTI
from Components.ActionMap import ActionMap
from Components.TimerSanityCheck import TimerSanityCheck
+from Components.UsageConfig import preferredTimerPath
from Components.Sources.ServiceEvent import ServiceEvent
from Components.Sources.Event import Event
from Screens.TimerEdit import TimerSanityConflict
@@ -235,7 +236,7 @@ class EPGSelection(Screen):
self.session.openWithCallback(cb_func, MessageBox, _("Do you really want to delete %s?") % event.getEventName())
break
else:
- newEntry = RecordTimerEntry(serviceref, checkOldTimers = True, *parseEvent(event))
+ newEntry = RecordTimerEntry(serviceref, checkOldTimers = True, dirname = preferredTimerPath(), *parseEvent(event))
self.session.openWithCallback(self.finishedAdd, TimerEntry, newEntry)
def finishedAdd(self, answer):