[Python-modules-commits] r12095 - in packages/nevow/trunk/debian (changelog runtrial.py)

bernat at users.alioth.debian.org bernat at users.alioth.debian.org
Tue Mar 2 20:17:13 UTC 2010


    Date: Tuesday, March 2, 2010 @ 20:17:11
  Author: bernat
Revision: 12095

Fix an FTBFS with Python 2.6 because of the way unittests are run.

Modified:
  packages/nevow/trunk/debian/changelog
  packages/nevow/trunk/debian/runtrial.py

Modified: packages/nevow/trunk/debian/changelog
===================================================================
--- packages/nevow/trunk/debian/changelog	2010-03-02 20:15:18 UTC (rev 12094)
+++ packages/nevow/trunk/debian/changelog	2010-03-02 20:17:11 UTC (rev 12095)
@@ -9,6 +9,7 @@
     (everything matching **/*.{tpl,xhtml}).
   * In the above patch, alter glossary.xhtml to use H2 tag instead of
     H3. This closes: #564375.
+  * Fix an FTBFS with Python 2.6 because of the way unittests are run.
 
  -- Vincent Bernat <bernat at debian.org>  Tue, 02 Mar 2010 20:37:21 +0100
 

Modified: packages/nevow/trunk/debian/runtrial.py
===================================================================
--- packages/nevow/trunk/debian/runtrial.py	2010-03-02 20:15:18 UTC (rev 12094)
+++ packages/nevow/trunk/debian/runtrial.py	2010-03-02 20:17:11 UTC (rev 12095)
@@ -9,6 +9,7 @@
 _path = sys.path[:]
 sys.path[:] = []
 addsitedir(join(root, site_packages[1:]))
+addsitedir(join(root, site_packages[1:].replace("dist-packages", "site-packages")))
 sys.path.extend(_path)
 
 from twisted.scripts.trial import run




More information about the Python-modules-commits mailing list