Comment 37 for bug 1438758

Revision history for this message
Martin Pitt (pitti) wrote :

There is a slight error in def get_container():

Traceback (most recent call last):
  File "/usr/share/apport/apport", line 345, in <module>
    container, owner = get_container(host_pid)
TypeError: 'NoneType' object is not iterable

In the failure case it needs to

            return (None, None)

not just "None". I fixed that in the patch which I'll push to trunk as soon as this gets released.

This is the complete patch including (fixed) test case and NEWS entry that I'm going to push.