aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-10-31 01:18:33 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-10-31 01:18:33 +0000
commit07052ad2c1f86a67bbdfb5f15a8611af927d5b4a (patch)
tree99816b0fa9b639fa89fec31fbd23e9d12413e4f2 /lib/python
parenta1459dc3c43107cc60c1f4869fe87ee8763b70fe (diff)
downloadenigma2-07052ad2c1f86a67bbdfb5f15a8611af927d5b4a.tar.gz
enigma2-07052ad2c1f86a67bbdfb5f15a8611af927d5b4a.zip
when adding a manual timer, don't propose the original name/description.
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/TimerEdit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py
index 681d3a25..dbf3f1b5 100644
--- a/lib/python/Screens/TimerEdit.py
+++ b/lib/python/Screens/TimerEdit.py
@@ -139,9 +139,9 @@ class TimerEditList(Screen):
serviceref = ServiceReference(self.session.nav.getCurrentlyPlayingServiceReference())
if event is None:
- data = (int(time()), int(time() + 60), "unknown event", "", None)
+ data = (int(time()), int(time() + 60), "", "", None)
else:
- data = parseEvent(event)
+ data = parseEvent(event, description = False)
self.addTimer(RecordTimerEntry(serviceref, checkOldTimers = True, *data))