aboutsummaryrefslogtreecommitdiff
path: root/RecordTimer.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-03-04 15:43:32 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-03-04 15:43:32 +0000
commit4abd28c8904cc0858fa811e8d9438304624f888b (patch)
tree52e3bb9822c46bde3ccc3e761cfbdafa955ec96e /RecordTimer.py
parentfc75f85617502afc5fe3175d530f4eb938c421ad (diff)
downloadenigma2-4abd28c8904cc0858fa811e8d9438304624f888b.tar.gz
enigma2-4abd28c8904cc0858fa811e8d9438304624f888b.zip
don't stringToXML on service reference
Diffstat (limited to 'RecordTimer.py')
-rw-r--r--RecordTimer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/RecordTimer.py b/RecordTimer.py
index a2f21dfb..f41a4857 100644
--- a/RecordTimer.py
+++ b/RecordTimer.py
@@ -291,7 +291,7 @@ class RecordTimer(timer.Timer):
list.append('<timer')
list.append(' begin="' + str(int(timer.begin)) + '"')
list.append(' end="' + str(int(timer.end)) + '"')
- list.append(' serviceref="' + str(stringToXML(timer.service_ref)) + '"')
+ list.append(' serviceref="' + str(timer.service_ref) + '"')
list.append(' repeated="' + str(int(timer.repeated)) + '"')
list.append(' name="' + str(stringToXML(timer.name)) + '"')
list.append(' description="' + str(stringToXML(timer.description)) + '"')