mirror of
https://github.com/minoplhy/filters-converter.git
synced 2024-12-22 10:08:08 +00:00
Fix Space
This commit is contained in:
parent
e124417a7f
commit
dae13439d9
@ -9,7 +9,7 @@ outfile = sys.argv[2]
|
||||
with open(infile) as f:
|
||||
file = f.read().split('\n')
|
||||
for i in range(len(file)):
|
||||
file[i] = re.sub('^127.0.0.1 ', ' ', file[i])
|
||||
file[i] = re.sub('^127.0.0.1 ', '', file[i])
|
||||
file[i] = re.sub('^0.0.0.0 ', '', file[i])
|
||||
file[i] = re.sub('^0 ', '', file[i])
|
||||
file[i] = re.sub('^:: ', '', file[i])
|
||||
|
Loading…
Reference in New Issue
Block a user