[Python-checkins] r85149 - tracker/instances/python-dev/lib/identify_patch.py

martin.v.loewis python-checkins at python.org
Fri Oct 1 23:08:31 CEST 2010


Author: martin.v.loewis
Date: Fri Oct  1 23:08:31 2010
New Revision: 85149

Log:
Fix path.


Modified:
   tracker/instances/python-dev/lib/identify_patch.py

Modified: tracker/instances/python-dev/lib/identify_patch.py
==============================================================================
--- tracker/instances/python-dev/lib/identify_patch.py	(original)
+++ tracker/instances/python-dev/lib/identify_patch.py	Fri Oct  1 23:08:31 2010
@@ -79,7 +79,7 @@
     # manual setup:
     # create table svnbranch(rev integer primary key, branch text);
     # then run this once in the instance directory
-    sys.path.append('/home/roundup/roundup/lib/python2.5/site-packages')
+    sys.path.append('/home/roundup/lib/python2.5/site-packages')
     import roundup.instance
     tracker = roundup.instance.open('.')
     db = tracker.open('admin')


More information about the Python-checkins mailing list