X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fmessage_iterator.py;h=bde3afa054a11a1ca4265fae050fd7f9df0ba8e6;hb=44ced4ff8e8b5e46ef03f3aec737fca5ca2c7003;hp=e5199290b06b62ffa90df818b6d82cfe5215ad37;hpb=c6af194f4d5f4478fbd14a019e41cff93f9c207e;p=babeltrace.git diff --git a/src/bindings/python/bt2/bt2/message_iterator.py b/src/bindings/python/bt2/bt2/message_iterator.py index e5199290..bde3afa0 100644 --- a/src/bindings/python/bt2/bt2/message_iterator.py +++ b/src/bindings/python/bt2/bt2/message_iterator.py @@ -239,14 +239,14 @@ class _UserMessageIterator(_MessageIterator): if packet.stream.cls.packets_have_beginning_default_clock_snapshot: if default_clock_snapshot is None: - raise ValueError("packet beginning messages in this stream must have a default clock snapshots") + raise ValueError("packet beginning messages in this stream must have a default clock snapshot") utils._check_uint64(default_clock_snapshot) ptr = native_bt.message_packet_beginning_create_with_default_clock_snapshot( self._ptr, packet._ptr, default_clock_snapshot) else: if default_clock_snapshot is not None: - raise ValueError("packet beginning messages in this stream must not have a default clock snapshots") + raise ValueError("packet beginning messages in this stream must not have a default clock snapshot") ptr = native_bt.message_packet_beginning_create(self._ptr, packet._ptr) @@ -260,14 +260,14 @@ class _UserMessageIterator(_MessageIterator): if packet.stream.cls.packets_have_end_default_clock_snapshot: if default_clock_snapshot is None: - raise ValueError("packet end messages in this stream must have a default clock snapshots") + raise ValueError("packet end messages in this stream must have a default clock snapshot") utils._check_uint64(default_clock_snapshot) ptr = native_bt.message_packet_end_create_with_default_clock_snapshot( self._ptr, packet._ptr, default_clock_snapshot) else: if default_clock_snapshot is not None: - raise ValueError("packet end messages in this stream must not have a default clock snapshots") + raise ValueError("packet end messages in this stream must not have a default clock snapshot") ptr = native_bt.message_packet_end_create(self._ptr, packet._ptr)