diff options
Diffstat (limited to 'python/progress.cc')
| -rw-r--r-- | python/progress.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/python/progress.cc b/python/progress.cc index 33b4ed97..f79090f7 100644 --- a/python/progress.cc +++ b/python/progress.cc @@ -165,8 +165,11 @@ bool PyFetchProgress::Pulse(pkgAcquire * Owner) RunSimpleCallback("pulse", arglist, &result); bool res = true; - if(!PyArg_Parse(result, "b", &res)) - std::cerr << "result could not be parsed" << std::endl; + if(!PyArg_Parse(result, "b", &res)) + { + // mvo: this is harmless, we shouldn't print anything here + //std::cerr << "result could not be parsed" << std::endl; + } // fetching can be canceld by returning false return res; |
