summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py b/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py
index 3385ec65..7c398e9d 100644
--- a/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py
+++ b/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py
@@ -97,7 +97,7 @@ class CTRexScFieldRangeValue(CTRexScFieldRangeBase):
if min_value > max_value:
raise CTRexPacketBuildException(-12, 'min is greater than max');
if min_value == max_value:
- raise CTRexPacketBuildException(-13, 'min value is equal to max value, you can't use this type of range');
+ raise CTRexPacketBuildException(-13, "min value is equal to max value, you can't use this type of range");
class CTRexScIpv4SimpleRange(CTRexScFieldRangeBase):