]> Git Repo - qemu.git/commitdiff
trace: [tracetool] Spacing changes
authorLluís Vilanova <[email protected]>
Sun, 23 Feb 2014 19:37:13 +0000 (20:37 +0100)
committerStefan Hajnoczi <[email protected]>
Wed, 7 May 2014 17:07:17 +0000 (19:07 +0200)
Signed-off-by: Lluís Vilanova <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
scripts/tracetool/__init__.py

index bfe44bd6be540ddd5b3cc2d05063b0081410a7d2..3cf7a4ec45e872ef3ce1cf2aef71db8d95b4fee6 100644 (file)
@@ -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
This page took 0.028243 seconds and 4 git commands to generate.