diff options
author | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-02-02 20:48:06 +0200 |
---|---|---|
committer | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-02-02 20:48:06 +0200 |
commit | cf7dc73b0418374e6b73cb1b2fafe05450cacbf3 (patch) | |
tree | 2f2b7fc501c59a0593f106d6e4832e901b62d49b | |
parent | 0603b286dc56d13e8491e39717449fab44a4346a (diff) |
typo
-rw-r--r-- | scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py | 2 |
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): |