Message9596

Author zyasoft
Recipients zyasoft
Date 2015-03-09.17:48:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425923333.02.0.39132577284.issue2283@psf.upfronthosting.co.za>
In-reply-to
Content
site.py should always be robust to missing settings and follow its default behavior that import-related errors are quietly ignored. The offending code seen in the error reported in http://sourceforge.net/p/jython/mailman/message/33546082/ is found here:

def makepath(*paths):
    dir = os.path.join(*paths)
    if _is_jython and (dir == '__classpath__' or
                       dir.startswith('__pyclasspath__')):
            return dir, dir
    try:
        dir = os.path.abspath(dir)
    except OSError:
        pass
    return dir, os.path.normcase(dir)

That should be easy enough to fix.

Blocker for RC1
History
Date User Action Args
2015-03-09 17:48:53zyasoftsetrecipients: + zyasoft
2015-03-09 17:48:53zyasoftsetmessageid: <1425923333.02.0.39132577284.issue2283@psf.upfronthosting.co.za>
2015-03-09 17:48:53zyasoftlinkissue2283 messages
2015-03-09 17:48:52zyasoftcreate