diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2014-08-27 12:08:53 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-08-28 13:42:25 +0100 |
commit | 73735f72188bd5fe25c3478aa4a2f1a17cb878d8 (patch) | |
tree | da79f9dc7ee92054cce61e61ccfbe6c6b866fda6 /scripts | |
parent | 6b029216056b8e64a6b5b7c43d1342cd4ef7ebc0 (diff) |
trace: avoid Python 2.5 all() in tracetool
Red Hat Enterprise Linux 5 ships Python 2.4.3. The all() function was
added in Python 2.5 so we cannot use it.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: BenoƮt Canet <benoit.canet@nodalink.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/tracetool/backend/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/tracetool/backend/__init__.py b/scripts/tracetool/backend/__init__.py index 5bfa1efc5c..d4b6dab9ca 100644 --- a/scripts/tracetool/backend/__init__.py +++ b/scripts/tracetool/backend/__init__.py @@ -102,7 +102,8 @@ class Wrapper: def __init__(self, backends, format): self._backends = [backend.replace("-", "_") for backend in backends] self._format = format.replace("-", "_") - assert all(exists(backend) for backend in self._backends) + for backend in self._backends: + assert exists(backend) assert tracetool.format.exists(self._format) def _run_function(self, name, *args, **kwargs): |