[V1] framework/packet: correct the contrib name
Commit Message
correct the scapy contrib file name
Signed-off-by: LihongX Ma <lihongx.ma@intel.com>
---
framework/packet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Tested-by: lihongx Ma<lihongx.ma@intel.com>
Regards,
Ma,lihong
> -----Original Message-----
> From: Ma, LihongX <lihongx.ma@intel.com>
> Sent: Monday, September 21, 2020 6:19 AM
> To: dts@dpdk.org
> Cc: Ma, LihongX <lihongx.ma@intel.com>
> Subject: [dts][PATCH V1] framework/packet: correct the contrib name
>
> correct the scapy contrib file name
>
> Subject: [dts] [PATCH V1] framework/packet: correct the contrib name
>
> correct the scapy contrib file name
>
> Signed-off-by: LihongX Ma <lihongx.ma@intel.com>
Applied
@@ -78,7 +78,7 @@ def get_scapy_module_impcmd():
if m in local_modules:
cmd_li.append(f'from {m} import {",".join(scapy_modules_required[m])}')
else:
- cmd_li.append(f'from scapy.contirb.{m} import {",".join(scapy_modules_required[m])}')
+ cmd_li.append(f'from scapy.contrib.{m} import {",".join(scapy_modules_required[m])}')
return ';'.join(cmd_li)
SCAPY_IMP_CMD = get_scapy_module_impcmd()