summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <egon@tas>2007-03-15 13:09:32 +0100
committerMichael Vogt <egon@tas>2007-03-15 13:09:32 +0100
commit0b8033d96e6144f8bc05583be0b2d1743f3c73a6 (patch)
tree8626185e58ee0122d66fbe50edfdf9211d610960
parent9a97aa02892342fa4fe7e2f8e3bfe314f194ef0e (diff)
downloadpython-apt-0b8033d96e6144f8bc05583be0b2d1743f3c73a6.tar.gz
* aptsources/distro.py:
- fix typo (LP#84009)
-rw-r--r--aptsources/distro.py5
-rw-r--r--debian/changelog7
2 files changed, 9 insertions, 3 deletions
diff --git a/aptsources/distro.py b/aptsources/distro.py
index a95fecdd..16fb0dc7 100644
--- a/aptsources/distro.py
+++ b/aptsources/distro.py
@@ -426,8 +426,7 @@ def get_distro():
return UbuntuDistribution(id, codename, description,
release)
elif id == "Debian":
- return DebianDistribution(id, codename, description,
- release)
+ return DebianDistribution(id, codename, description, release)
else:
- return Distribution(id, codename, description, relase)
+ return Distribution(id, codename, description, release)
diff --git a/debian/changelog b/debian/changelog
index 7e897122..05efcd08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-apt (0.6.20ubuntu14) feisty; urgency=low
+
+ * aptsources/distro.py:
+ - fix typo (LP#84009)
+
+ --
+
python-apt (0.6.20ubuntu13) feisty; urgency=low
* fix in the duplicated source checking (thanks to Sebastian Heinlein)