summaryrefslogtreecommitdiff
path: root/python/cache.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-07-30 14:10:35 +0200
committerJulian Andres Klode <jak@debian.org>2009-07-30 14:10:35 +0200
commit0181690f1cdc4ffbc3192b9b93d13d9a9a1f8f83 (patch)
treee1950f000b3ef212d8f5acdc7f330648ef781287 /python/cache.cc
parent4d211f682d1fb100049898b4f0675eed1faa5c4e (diff)
downloadpython-apt-0181690f1cdc4ffbc3192b9b93d13d9a9a1f8f83.tar.gz
* python/cache.cc:
- Support Breaks, Enhances dependency types (Closes: #416247)
Diffstat (limited to 'python/cache.cc')
-rw-r--r--python/cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/cache.cc b/python/cache.cc
index 0c59f561..c7e5e76e 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -502,7 +502,7 @@ static PyObject *MakeDepends(PyObject *Owner,pkgCache::VerIterator &Ver,
{
"", "Depends","PreDepends","Suggests",
"Recommends","Conflicts","Replaces",
- "Obsoletes"
+ "Obsoletes", "Breaks", "Enhances"
};
PyObject *Dep = PyString_FromString(Types[Start->Type]);
LastDepType = Start->Type;