diff options
author | Lluís Vilanova <vilanova@ac.upc.edu> | 2014-02-23 20:37:13 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-05-07 19:07:17 +0200 |
commit | 9c24a52e2965604119c4652d8f8c56b8679f8730 (patch) | |
tree | 4271b505a9696fb04c6639bd36b87f70041cdf01 | |
parent | ad7443e40af63053a5eb0d44b16379875daa855e (diff) | |
download | qemu-9c24a52e2965604119c4652d8f8c56b8679f8730.zip |
trace: [tracetool] Spacing changes
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r-- | scripts/tracetool/__init__.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/tracetool/__init__.py b/scripts/tracetool/__init__.py index bfe44bd6be..3cf7a4ec45 100644 --- a/scripts/tracetool/__init__.py +++ b/scripts/tracetool/__init__.py @@ -148,7 +148,8 @@ class Event(object): unknown_props = set(self.properties) - self._VALID_PROPS if len(unknown_props) > 0: - raise ValueError("Unknown properties: %s" % ", ".join(unknown_props)) + raise ValueError("Unknown properties: %s" + % ", ".join(unknown_props)) def copy(self): """Create a new copy.""" @@ -206,7 +207,7 @@ class TracetoolError (Exception): pass -def try_import(mod_name, attr_name = None, attr_default = None): +def try_import(mod_name, attr_name=None, attr_default=None): """Try to import a module and get an attribute from it. Parameters @@ -233,7 +234,7 @@ def try_import(mod_name, attr_name = None, attr_default = None): def generate(fevents, format, backend, - binary = None, probe_prefix = None): + binary=None, probe_prefix=None): """Generate the output for the given (format, backend) pair. Parameters |