[Python-modules-commits] r11703 - in packages/pycha/trunk/debian (changelog runtests.py)

dktrkranz at users.alioth.debian.org dktrkranz at users.alioth.debian.org
Sat Feb 13 12:50:19 UTC 2010


    Date: Saturday, February 13, 2010 @ 12:50:05
  Author: dktrkranz
Revision: 11703

Fix FTBFS with python2.6 as default Python version

Modified:
  packages/pycha/trunk/debian/changelog
  packages/pycha/trunk/debian/runtests.py

Modified: packages/pycha/trunk/debian/changelog
===================================================================
--- packages/pycha/trunk/debian/changelog	2010-02-12 23:17:14 UTC (rev 11702)
+++ packages/pycha/trunk/debian/changelog	2010-02-13 12:50:05 UTC (rev 11703)
@@ -1,3 +1,11 @@
+pycha (0.5.2-2) UNRELEASED; urgency=low
+
+  [ Luca Falavigna ]
+  * debian/runtests.py:
+    - Fix FTBFS with python2.6 as default Python version.
+
+ -- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>  Sat, 13 Feb 2010 13:47:28 +0100
+
 pycha (0.5.2-1) unstable; urgency=low
 
   * New upstream release

Modified: packages/pycha/trunk/debian/runtests.py
===================================================================
--- packages/pycha/trunk/debian/runtests.py	2010-02-12 23:17:14 UTC (rev 11702)
+++ packages/pycha/trunk/debian/runtests.py	2010-02-13 12:50:05 UTC (rev 11703)
@@ -8,7 +8,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)
 sys.path.append("tests")
 




More information about the Python-modules-commits mailing list