diff options
| author | Michael Vogt <egon@tas> | 2007-03-15 13:09:32 +0100 |
|---|---|---|
| committer | Michael Vogt <egon@tas> | 2007-03-15 13:09:32 +0100 |
| commit | 0b8033d96e6144f8bc05583be0b2d1743f3c73a6 (patch) | |
| tree | 8626185e58ee0122d66fbe50edfdf9211d610960 /aptsources | |
| parent | 9a97aa02892342fa4fe7e2f8e3bfe314f194ef0e (diff) | |
| download | python-apt-0b8033d96e6144f8bc05583be0b2d1743f3c73a6.tar.gz | |
* aptsources/distro.py:
- fix typo (LP#84009)
Diffstat (limited to 'aptsources')
| -rw-r--r-- | aptsources/distro.py | 5 |
1 files changed, 2 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) |
