Revision: 252
http://javascriptlint.svn.sourceforge.net/javascriptlint/?rev=252&view=rev
Author: matthiasmiller
Date: 2009-10-03 15:41:59 +0000 (Sat, 03 Oct 2009)
Log Message:
-----------
Fix pyspidermonkey search path.
Modified Paths:
--------------
trunk/javascriptlint/pyjsl/spidermonkey_.py
Modified: trunk/javascriptlint/pyjsl/spidermonkey_.py
===================================================================
--- trunk/javascriptlint/pyjsl/spidermonkey_.py 2009-10-03 15:33:38 UTC (rev 251)
+++ trunk/javascriptlint/pyjsl/spidermonkey_.py 2009-10-03 15:41:59 UTC (rev 252)
@@ -10,7 +10,7 @@
dist = distutils.dist.Distribution()
build = distutils.command.build.build(dist)
build.finalize_options()
- return os.path.join(os.path.dirname(__file__), '..', build.build_platlib)
+ return os.path.join(os.path.dirname(__file__), '..', '..', build.build_platlib)
sys.path.insert(0, _get_lib_path())
try:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|