From 2a02ed9335ef344015646bca54ad7a2a65ec01c4 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sun, 8 Sep 2019 21:45:17 -0400 Subject: [PATCH] bt2: fix trivial typo Change-Id: Iff1c9f8315625f63863763e1fbb35b86d6d54166 Signed-off-by: Simon Marchi --- src/bindings/python/bt2/bt2/message_iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/bt2/bt2/message_iterator.py b/src/bindings/python/bt2/bt2/message_iterator.py index e0bd7492..51410189 100644 --- a/src/bindings/python/bt2/bt2/message_iterator.py +++ b/src/bindings/python/bt2/bt2/message_iterator.py @@ -62,7 +62,7 @@ class _GenericMessageIterator(object._SharedObject, _MessageIterator): return res != 0 def seek_beginning(self): - # Forget about buffered messages, they won't be valid after seeking.. + # Forget about buffered messages, they won't be valid after seeking. self._current_msgs.clear() self._at = 0 -- 2.34.1