From e62fd3c67202426ae1b91a48848e89e025a9b924 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Fri, 21 Aug 2009 16:01:12 +0200 Subject: python/cache.cc: Set default pulseInterval to 0 (matches apt-pkg's default). --- python/cache.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cache.cc b/python/cache.cc index f0da8511..a88490bd 100644 --- a/python/cache.cc +++ b/python/cache.cc @@ -81,7 +81,7 @@ static PyObject *PkgCacheUpdate(PyObject *Self,PyObject *Args) PyObject *pyFetchProgressInst = 0; PyObject *pySourcesList = 0; - int pulseInterval = 5000; + int pulseInterval = 0; if (PyArg_ParseTuple(Args, "OO|i", &pyFetchProgressInst,&pySourcesList, &pulseInterval) == 0) return 0; -- cgit v1.2.3