diff options
| -rw-r--r-- | debian/changelog | 4 | ||||
| -rw-r--r-- | tests/test_aptsources.py | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index d5a3e31f..b78a58af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -python-apt (0.7.98) UNRELEASED; urgency=low +python-apt (0.7.98) unstable; urgency=low [ Michael Vogt ] * python/acquire.cc: @@ -38,7 +38,7 @@ python-apt (0.7.98) UNRELEASED; urgency=low * apt/debfile: - don't fail if we conflict with the pkgs we are reinstalling - -- Michael Vogt <mvo@debian.org> Fri, 27 Aug 2010 11:22:23 +0200 + -- Michael Vogt <mvo@debian.org> Tue, 28 Sep 2010 15:47:51 +0200 python-apt (0.7.97.1) unstable; urgency=low diff --git a/tests/test_aptsources.py b/tests/test_aptsources.py index e56761f3..331df935 100644 --- a/tests/test_aptsources.py +++ b/tests/test_aptsources.py @@ -20,6 +20,8 @@ class TestAptSources(unittest.TestCase): apt_pkg.config.set("Dir::Etc::sourceparts", "/xxx") if os.path.exists("./build/data/templates"): self.templates = os.path.abspath("./build/data/templates") + elif os.path.exists("../build/data/templates"): + self.templates = os.path.abspath("../build/data/templates") else: self.templates = "/usr/share/python-apt/templates/" |
