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

Consider:

import config
   .
   .
   .
        if vars(config).has_key('unzip') and config.unzip != "":
            if not os.path.exists(config.unzip):
                self.logger.die("unzip program not found at %s" % config.unzip)
            self.unzip = config.unzip  
        else: 
            .
            .
            .


References to config.unzip are flagged as errors, but they really aren't.  This
is a fundamental problem with trying to statically check dynamic languages.

______________________________________________________________________
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

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to