Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[EFL] ugly workaround for the imp+elementary issue
For some unknown reason, "imp.find_module("elementary")" fails, but
"import elementary" works...
  • Loading branch information
borisfaure committed Oct 22, 2009
1 parent e3f4cbe commit 917713f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion amsn2/gui/front_ends/efl/__init__.py
Expand Up @@ -20,7 +20,8 @@ def load():
imp.find_module("evas")
imp.find_module("edje")
imp.find_module("ecore")
imp.find_module("elementary")
#TODO FIXME
#imp.find_module("elementary")

gui.GUIManager.registerFrontEnd("efl", sys.modules[__name__])

Expand Down

0 comments on commit 917713f

Please sign in to comment.