cc-4105: made some strings unicode literals

This commit is contained in:
Rudi Grinberg 2012-07-20 17:16:00 -04:00
parent 587292c963
commit bd5688a484
3 changed files with 39 additions and 1 deletions

View file

@ -9,7 +9,7 @@ import locale
from media.monitor.exceptions import FailedToSetLocale
supported_extensions = ["mp3", "ogg"]
supported_extensions = [u"mp3", u"ogg"]
unicode_unknown = u'unknown'
class LazyProperty(object):