On Sat, Feb 14, 2009 at 11:53:24AM -0200, Jose de Paula Eufrasio Junior <[email protected]> wrote: > Hmm. Something is wrong: > > >>> import gfx > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > ImportError: No module named gfx
Try
import sys
sys.path += ["."]
import gfx
.
Greetings
Matthias
