Message ID | 20220106123505.164550-2-y.karadz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [1/2] trace-cruncher: Add 'is_attached()' | expand |
diff --git a/tracecruncher/ft_utils.py b/tracecruncher/ft_utils.py index b5f031a..cae54b0 100644 --- a/tracecruncher/ft_utils.py +++ b/tracecruncher/ft_utils.py @@ -47,7 +47,7 @@ class event: if static: self.evt_id = find_event_id(system, name) if self.evt_id < 0: - raise ValueError('Faild to find event {0}/{1}'.format(system, name)) + raise ValueError('Failed to find event {0}/{1}'.format(system, name)) else: self.evt_id = -1
Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com> --- tracecruncher/ft_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)