Skip to content

Commit d3648de

Browse files
committed
Fixed run_scapy.bat to work under Python 2.6
The old batch file worked on Python 2.5 but lead to the following error under Python 2.6: c:\Python26\python.exe: scapy is a package and cannot be directly executed New file should work under both versions.
1 parent c5fa52b commit d3648de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_scapy.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
22
set PYTHONPATH=%cd%
3-
python -m scapy
3+
python -m scapy.__init__

0 commit comments

Comments
 (0)