aboutsummaryrefslogtreecommitdiff
path: root/RecordTimer.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-08-24 12:16:56 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-08-24 12:16:56 +0000
commit65e19746f08f1287005861692322cdf868b06dc6 (patch)
tree67674e5b2a111f7674f80b3957e10358b914b5d5 /RecordTimer.py
parente09309bd7f69dbc98f471e28e01e2ad21ab7a757 (diff)
downloadenigma2-65e19746f08f1287005861692322cdf868b06dc6.tar.gz
enigma2-65e19746f08f1287005861692322cdf868b06dc6.zip
some NumericalInput and uncode/utf-8 fixes
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 da629ee7..25c2b036 100644
--- a/RecordTimer.py
+++ b/RecordTimer.py
@@ -338,7 +338,7 @@ class RecordTimer(timer.Timer):
list.append(' end="' + str(int(timer.end)) + '"')
list.append(' serviceref="' + str(timer.service_ref) + '"')
list.append(' repeated="' + str(int(timer.repeated)) + '"')
- list.append(' name="' + str(stringToXML(timer.name)) + '"')
+ list.append(' name="' + str(stringToXML(timer.name.encode("utf-8"))) + '"')
list.append(' description="' + str(stringToXML(timer.description)) + '"')
list.append(' afterevent="' + str(stringToXML({ AFTEREVENT.NONE: "nothing", AFTEREVENT.STANDBY: "standby", AFTEREVENT.DEEPSTANDBY: "deepstandby" }[timer.afterEvent])) + '"')
if timer.eit is not None: