From 6b475588fccef388703ff34802262405e9f99da1 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 29 Aug 2017 18:04:08 -0400 Subject: [PATCH] Fix: typo in ctf_writer error msg MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- bindings/python/bt2/bt2/ctf_writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/bt2/bt2/ctf_writer.py b/bindings/python/bt2/bt2/ctf_writer.py index 0bbabaf4..337c82f5 100644 --- a/bindings/python/bt2/bt2/ctf_writer.py +++ b/bindings/python/bt2/bt2/ctf_writer.py @@ -201,7 +201,7 @@ class _CtfWriterStream(stream._StreamBase): def flush(self): ret = native_bt.ctf_stream_flush(self._ptr) - utils._handle_ret(ret, 'cannot cannot flush CTF writer stream object') + utils._handle_ret(ret, 'cannot flush CTF writer stream object') @property def packet_header_field(self): -- 2.34.1