Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5120615
By: xsiebert

Hello,

I think I found out where the problem was.
The error occurs because I do something like this:
try:
   import fitin
except ImportError:
   try:
     import fitin2 as fitin
   except ImportError:
     print "Error importing fitin module"

[the reason I do this "dirty" trick is that depending on the numpy version 
either
fitin.so or fitin2.so can be imported...]

It does not occur however if I do simply:
try:
    import fitin
except ImportError:
    print "Error importing fitin module"


Well, sorry I bothered you guys.
--X.
    

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to