summaryrefslogtreecommitdiff
path: root/AptSources
diff options
context:
space:
mode:
authorSebastian Heinlein <sebi@sebi-laptop>2006-12-04 06:34:03 +0100
committerSebastian Heinlein <sebi@sebi-laptop>2006-12-04 06:34:03 +0100
commit32a39d656e52aeab54dce24e6907d4b57301dce7 (patch)
tree6c9a259a13970d1d21fa363b6cdc8e085196dcd8 /AptSources
parent4b10fc07a8bf314a56392e53c0bb389075700ba5 (diff)
downloadpython-apt-32a39d656e52aeab54dce24e6907d4b57301dce7.tar.gz
* actually use the DebianDistriubtion class on Debian :)
Diffstat (limited to 'AptSources')
-rw-r--r--AptSources/aptsources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/AptSources/aptsources.py b/AptSources/aptsources.py
index 45441cdd..2fd4b845 100644
--- a/AptSources/aptsources.py
+++ b/AptSources/aptsources.py
@@ -811,7 +811,7 @@ def get_distro():
return UbuntuDistribution(id, codename, description,
release)
elif id == "Debian":
- return UbuntuDistribution(id, codename, description,
+ return DebianDistribution(id, codename, description,
release)
else:
return Distribution(id, codename, description, relase)