joxeankoret / pyew

Official repository for Pyew.
GNU General Public License v2.0
383 stars 95 forks source link

import easygui problem #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There is an error on trying to run pdf_sample.py:

Traceback (most recent call last):
  File "pdf_example.py", line 7, in <module>
    from easygui import choicebox, fileopenbox, msgbox
ImportError: No module named easygui

It's easy to solve:

@@ -4,7 +4,7 @@
 import sys

 from pyew_core import CPyew
-from easygui import choicebox, fileopenbox, msgbox
+from plugins.easygui import choicebox, fileopenbox, msgbox

 def main(filename=None):

Regards

Original issue reported on code.google.com by hugo.t...@gmail.com on 9 Jun 2010 at 9:56

GoogleCodeExporter commented 9 years ago
I fixed the issue. Thanks you!

Original comment by joxean.p...@gmail.com on 9 Jun 2010 at 5:36