[Zope3-checkins] SVN: Zope3/trunk/test.py Check 'src' for modules first

Dmitry Vasiliev dima at hlabs.spb.ru
Fri Sep 24 05:13:27 EDT 2004


Log message for revision 27670:
  Check 'src' for modules first
  


Changed:
  U   Zope3/trunk/test.py


-=-
Modified: Zope3/trunk/test.py
===================================================================
--- Zope3/trunk/test.py	2004-09-24 08:54:52 UTC (rev 27669)
+++ Zope3/trunk/test.py	2004-09-24 09:13:26 UTC (rev 27670)
@@ -19,7 +19,7 @@
 import sys, os
 
 here = os.path.dirname(os.path.realpath(__file__))
-sys.path.append(os.path.join(here, 'src'))
+sys.path.insert(0, os.path.join(here, 'src'))
 
 import zope.app.tests.test
 



More information about the Zope3-Checkins mailing list