X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fstream_class.py;fp=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fstream_class.py;h=885ba746dae01ae37b9db9ae5a0873453fe58804;hp=18e970c94d82838d193194bc7efdf22257f1b69b;hb=f5567ea88d172767b34373bc6e402da8bfd85ef8;hpb=419d8c49bd978a59b8a0619d83cb6ba26b18f970 diff --git a/src/bindings/python/bt2/bt2/stream_class.py b/src/bindings/python/bt2/bt2/stream_class.py index 18e970c9..885ba746 100644 --- a/src/bindings/python/bt2/bt2/stream_class.py +++ b/src/bindings/python/bt2/bt2/stream_class.py @@ -214,14 +214,14 @@ class _StreamClass(_StreamClassConst): if self.assigns_automatic_event_class_id: if id is not None: raise ValueError( - 'id provided, but stream class assigns automatic event class ids' + "id provided, but stream class assigns automatic event class ids" ) ec_ptr = native_bt.event_class_create(self._ptr) else: if id is None: raise ValueError( - 'id not provided, but stream class does not assign automatic event class ids' + "id not provided, but stream class does not assign automatic event class ids" ) utils._check_uint64(id) @@ -345,7 +345,7 @@ class _StreamClass(_StreamClassConst): if packet_context_field_class is not None: if not supports_packets: raise ValueError( - 'cannot have a packet context field class without supporting packets' + "cannot have a packet context field class without supporting packets" ) utils._check_type( @@ -376,11 +376,11 @@ class _StreamClass(_StreamClassConst): if not supports_packets: if packets_have_beginning_default_clock_snapshot: raise ValueError( - 'cannot not support packets, but have packet beginning default clock snapshot' + "cannot not support packets, but have packet beginning default clock snapshot" ) if packets_have_end_default_clock_snapshot: raise ValueError( - 'cannot not support packets, but have packet end default clock snapshots' + "cannot not support packets, but have packet end default clock snapshots" ) # Discarded events @@ -390,12 +390,12 @@ class _StreamClass(_StreamClassConst): if discarded_events_have_default_clock_snapshots: if not supports_discarded_events: raise ValueError( - 'cannot not support discarded events, but have default clock snapshots for discarded event messages' + "cannot not support discarded events, but have default clock snapshots for discarded event messages" ) if default_clock_class is None: raise ValueError( - 'cannot have no default clock class, but have default clock snapshots for discarded event messages' + "cannot have no default clock class, but have default clock snapshots for discarded event messages" ) # Discarded packets @@ -404,16 +404,16 @@ class _StreamClass(_StreamClassConst): if supports_discarded_packets and not supports_packets: raise ValueError( - 'cannot support discarded packets, but not support packets' + "cannot support discarded packets, but not support packets" ) if discarded_packets_have_default_clock_snapshots: if not supports_discarded_packets: raise ValueError( - 'cannot not support discarded packets, but have default clock snapshots for discarded packet messages' + "cannot not support discarded packets, but have default clock snapshots for discarded packet messages" ) if default_clock_class is None: raise ValueError( - 'cannot have no default clock class, but have default clock snapshots for discarded packet messages' + "cannot have no default clock class, but have default clock snapshots for discarded packet messages" )