diff options
| -rw-r--r-- | debian/changelog | 2 | ||||
| -rwxr-xr-x | tests/fakeroot-apt-key | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 627ef655..cd55cd0a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ python-apt (0.8.6) UNRELEASED; urgency=low * apt/auth.py: - Use tempfile.NamedTemporaryFile to create temporary file - Use Popen.communicate() instead of stdin, stdout + * tests/fakeroot-apt-key: + - exec apt-key, otherwise we ignore the return value -- Michael Vogt <mvo@debian.org> Mon, 25 Jun 2012 13:41:02 +0200 diff --git a/tests/fakeroot-apt-key b/tests/fakeroot-apt-key index 7be99711..997161a1 100755 --- a/tests/fakeroot-apt-key +++ b/tests/fakeroot-apt-key @@ -1,2 +1,2 @@ #!/bin/sh -fakeroot /usr/bin/apt-key $* +exec fakeroot /usr/bin/apt-key $* |
