From aa1a9ac685cef8f6042f29eba3e5cd14a252ce01 Mon Sep 17 00:00:00 2001 From: daniel-123 Date: Sat, 29 Dec 2012 20:30:55 +0100 Subject: [PATCH] Fixed encoding error --- syncplay/messages.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/syncplay/messages.py b/syncplay/messages.py index 0c855b5..5a96723 100644 --- a/syncplay/messages.py +++ b/syncplay/messages.py @@ -1,3 +1,5 @@ +#coding:utf8 + en = { # Client notifications @@ -85,4 +87,4 @@ def getMessage(locale, type_): if(messages["en"].has_key(type_)): return messages["en"][type_] else: - raise KeyError() \ No newline at end of file + raise KeyError()