Skip to content

Commit

Permalink
Fix engine startup error when use_nicola is False.
Browse files Browse the repository at this point in the history
  • Loading branch information
ueno committed Nov 4, 2010
1 parent 55f475d commit 5a0eb37
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions engine/engine.py
Expand Up @@ -193,6 +193,9 @@ def __init__(self, bus, object_path):
if self.config.get_value('use_nicola'):
self.__nicola = nicola.Nicola(time_func=time.time)
self.__nicola_handler = None
else:
self.__nicola = None


def __init_props(self):
skk_props = ibus.PropList()
Expand Down

0 comments on commit 5a0eb37

Please sign in to comment.