From: Michael Jeanson Date: Tue, 29 Aug 2017 22:04:08 +0000 (-0400) Subject: Fix: typo in ctf_writer error msg X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=6b475588fccef388703ff34802262405e9f99da1 Fix: typo in ctf_writer error msg Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- 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):