diff options
| -rw-r--r-- | aptsources/distro.py | 5 | ||||
| -rw-r--r-- | debian/changelog | 7 |
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) |
