[feedly] fix unicode warning

This commit is contained in:
Bezleputh 2014-10-03 17:16:50 +02:00
commit 951356a6d7
2 changed files with 2 additions and 2 deletions

View file

@ -95,4 +95,4 @@ class PreferencesPage(JsonPage):
def get_categories(self):
for category, value in self.doc.items():
if value in [u"shown", u"hidden"]:
yield Collection([category])
yield Collection([u'%s' % category], u'%s' % category.replace('global.', ''))