summaryrefslogtreecommitdiff
path: root/python/cache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python/cache.cc')
-rw-r--r--python/cache.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/cache.cc b/python/cache.cc
index 35c8b78f..a8da6696 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -1371,6 +1371,8 @@ PyTypeObject RDepListType =
#ifdef COMPAT_0_7
PyObject *TmpGetCache(PyObject *Self,PyObject *Args)
{
+ PyErr_WarnEx(PyExc_DeprecationWarning, "apt_pkg.GetCache() is deprecated. "
+ "Please see apt_pkg.Cache() for the replacement.", 1);
return PkgCacheNew(&PkgCacheType,Args,0);
}
#endif