workaround for python3.3 alpha with the console.

This commit is contained in:
Campbell Barton 2012-05-17 15:24:26 +00:00
parent a31de14b2e
commit bb2b1694ab

@ -24,7 +24,9 @@ from bpy.props import StringProperty
def _lang_module_get(sc):
return __import__("console_" + sc.language)
return __import__("console_" + sc.language,
# for python 3.3, maybe a bug???
level=0)
class ConsoleExec(Operator):