diff options
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | tests/test_all.py | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 5a541b40..2ef16e90 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,12 @@ -python-apt (0.8.0ubuntu6) UNRELEASED; urgency=low +python-apt (0.8.0ubuntu6) oneiric; urgency=low * debian/control: - remove recommends of python2.6 + * tests/test_all.py: + - print library dir during the tests to hunt down mysterious build + failure on amd64 - -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 09 Aug 2011 16:39:06 +0200 + -- Michael Vogt <michael.vogt@ubuntu.com> Wed, 10 Aug 2011 06:12:30 +0200 python-apt (0.8.0ubuntu5) oneiric; urgency=low diff --git a/tests/test_all.py b/tests/test_all.py index f7b9dc8c..0f548781 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -43,6 +43,7 @@ if __name__ == '__main__': if dirname: os.chdir(dirname) library_dir = get_library_dir() + sys.stderr.write("Using library_dir: '%s'" % library_dir) if library_dir: sys.path.insert(0, os.path.abspath(library_dir)) |
