minor fix to dnsdump.py
This commit is contained in:
parent
d74f4298a5
commit
61a3131d2b
1 changed files with 1 additions and 2 deletions
|
@ -5,7 +5,6 @@ import sys
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
import glob
|
import glob
|
||||||
import difflib
|
|
||||||
from subprocess import Popen, PIPE
|
from subprocess import Popen, PIPE
|
||||||
|
|
||||||
# Example templates:
|
# Example templates:
|
||||||
|
@ -20,7 +19,7 @@ def main():
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
for template in glob.glob( os.path.join(sys.argv[2], '*.in')):
|
for template in glob.glob(os.path.join(sys.argv[2], '*.in')):
|
||||||
infile = open(template, 'r')
|
infile = open(template, 'r')
|
||||||
input = infile.readlines()
|
input = infile.readlines()
|
||||||
input_string = ""
|
input_string = ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue