aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/EpgSelection.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-22 16:08:21 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-22 16:08:21 +0100
commit4e8904ef73e3ce5e275a1f5fbf369c4f9dab648e (patch)
treeccb69c79af9e5624085f1db845e6223f81f1c69f /lib/python/Screens/EpgSelection.py
parentf901175ad6e72c60f0916c6ba6edcbdad7dbf5ec (diff)
parentd2188eb11a8c7663e34b1ab3d343a9981e60da62 (diff)
downloadenigma2-4e8904ef73e3ce5e275a1f5fbf369c4f9dab648e.tar.gz
enigma2-4e8904ef73e3ce5e275a1f5fbf369c4f9dab648e.zip
Merge branch 'bug_236_recordpath'
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):