diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-08-21 16:01:12 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-08-21 16:01:12 +0200 |
| commit | e62fd3c67202426ae1b91a48848e89e025a9b924 (patch) | |
| tree | af62b5769c2a4425d6d8b89d578ee9c011d9289a | |
| parent | 1eac1b0ebdbbe46bc86d692ed5c94b841b605bd6 (diff) | |
| download | python-apt-e62fd3c67202426ae1b91a48848e89e025a9b924.tar.gz | |
python/cache.cc: Set default pulseInterval to 0 (matches apt-pkg's default).
| -rw-r--r-- | python/cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
