diff -u autopilot-legacy-1.4.1+15.10.20150911/debian/changelog autopilot-legacy-1.4.1+15.10.20150911/debian/changelog --- autopilot-legacy-1.4.1+15.10.20150911/debian/changelog +++ autopilot-legacy-1.4.1+15.10.20150911/debian/changelog @@ -1,3 +1,9 @@ +autopilot-legacy (1.4.1+15.10.20150911-0ubuntu2) xenial; urgency=medium + + * psutil.Process.get_children is removed, use children instead + + -- Iain Lane Fri, 22 Jan 2016 17:44:49 +0000 + autopilot-legacy (1.4.1+15.10.20150911-0ubuntu1) wily; urgency=medium [ Marco Trevisan (TreviƱo) ] only in patch2: unchanged: --- autopilot-legacy-1.4.1+15.10.20150911.orig/autopilot/introspection/__init__.py +++ autopilot-legacy-1.4.1+15.10.20150911/autopilot/introspection/__init__.py @@ -434,7 +434,7 @@ def __call__(self, pid): if self._cached_result is None: self._cached_result = [ - p.pid for p in psutil.Process(pid).get_children(recursive=True) + p.pid for p in psutil.Process(pid).children(recursive=True) ] return self._cached_result