Roundup Tracker - Issues

Message4174

Author bnordgren
Recipients ber, bnordgren
Date 2010-10-21.15:40:54
Message-id <1287675654.39.0.00549126624271.issue2550675@psf.upfronthosting.co.za>
In-reply-to
Potential workaround follows, but the real fix will be to make the
availability of code in the lib directory consistent.

Put this at the top of a schema.py which depends on code in the lib
directory: 

import os.path
import sys

libdir = os.path.join(db.config.TRACKER_HOME, 'lib')
if libdir not in sys.path :
    sys.path.insert(0,libdir)

import quirky
History
Date User Action Args
2010-10-21 15:40:54bnordgrensetmessageid: <1287675654.39.0.00549126624271.issue2550675@psf.upfronthosting.co.za>
2010-10-21 15:40:54bnordgrensetrecipients: + bnordgren, ber
2010-10-21 15:40:54bnordgrenlinkissue2550675 messages
2010-10-21 15:40:54bnordgrencreate