It looks like the language parser no longer demands strings.

This commit is contained in:
Dusty Phillips 2013-03-18 16:41:19 -06:00
parent b92f1726bb
commit 1cf2126ece
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class Catalog(BoxLayout):
kv_container = self.screen_manager.current_screen.content.children[0]
try:
parser = Parser(content=self.language_box.text.encode('utf8'))
parser = Parser(content=self.language_box.text)
kv_container.clear_widgets()
widget = Factory.get(parser.root.name)()
Builder._apply_rule(widget, parser.root, parser.root)