tracing: scripts: Fix spelling
Fix the spelling of Babeltrace library in the warning message displayed when such a library can not be imported. Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
This commit is contained in:
parent
86af9bcce1
commit
7ab955ec1f
|
@ -26,7 +26,7 @@ import argparse
|
||||||
try:
|
try:
|
||||||
import bt2
|
import bt2
|
||||||
except ImportError:
|
except ImportError:
|
||||||
sys.exit("Missing dependency: You need to install python bindings of babletrace.")
|
sys.exit("Missing dependency: You need to install python bindings of babeltrace.")
|
||||||
|
|
||||||
def parse_args():
|
def parse_args():
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
|
@ -111,7 +111,7 @@ def main():
|
||||||
tin = th.get('in', None)
|
tin = th.get('in', None)
|
||||||
tout = th.get('out', None)
|
tout = th.get('out', None)
|
||||||
if tout is not None and tin is not None:
|
if tout is not None and tin is not None:
|
||||||
diff = (tout - tin)
|
diff = tout - tin
|
||||||
th['runtime'] = diff
|
th['runtime'] = diff
|
||||||
elif event.name in ['thread_switched_in']:
|
elif event.name in ['thread_switched_in']:
|
||||||
th['in'] = ns_from_origin
|
th['in'] = ns_from_origin
|
||||||
|
|
Loading…
Reference in a new issue