mirror of https://github.com/xemu-project/xemu.git
trace: [tracetool] Spacing changes
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
ad7443e40a
commit
9c24a52e29
|
@ -148,7 +148,8 @@ class Event(object):
|
||||||
|
|
||||||
unknown_props = set(self.properties) - self._VALID_PROPS
|
unknown_props = set(self.properties) - self._VALID_PROPS
|
||||||
if len(unknown_props) > 0:
|
if len(unknown_props) > 0:
|
||||||
raise ValueError("Unknown properties: %s" % ", ".join(unknown_props))
|
raise ValueError("Unknown properties: %s"
|
||||||
|
% ", ".join(unknown_props))
|
||||||
|
|
||||||
def copy(self):
|
def copy(self):
|
||||||
"""Create a new copy."""
|
"""Create a new copy."""
|
||||||
|
@ -206,7 +207,7 @@ class TracetoolError (Exception):
|
||||||
pass
|
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.
|
"""Try to import a module and get an attribute from it.
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
|
@ -233,7 +234,7 @@ def try_import(mod_name, attr_name = None, attr_default = None):
|
||||||
|
|
||||||
|
|
||||||
def generate(fevents, format, backend,
|
def generate(fevents, format, backend,
|
||||||
binary = None, probe_prefix = None):
|
binary=None, probe_prefix=None):
|
||||||
"""Generate the output for the given (format, backend) pair.
|
"""Generate the output for the given (format, backend) pair.
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
|
|
Loading…
Reference in New Issue