forked from MineClone5/MineClone5
fixes
This commit is contained in:
parent
72e53a82d7
commit
0a2fcdc4e8
|
@ -2,17 +2,25 @@ import os
|
|||
import re
|
||||
from pathlib import Path
|
||||
|
||||
path = "../mods/"
|
||||
pattern = re.compile(r'[a-z]')
|
||||
path = "./mods/"
|
||||
# pattern = re.compile(r'^(?P<nomtableau>[^ \t\]]+)[ ]*=[ ]*\{')
|
||||
pattern = re.compile(r'^(?P<nomtableau>[^ \t\]]+)[ ]*=[ ]*\{')
|
||||
|
||||
|
||||
pathlist = Path(path).rglob('*.lua')
|
||||
for path in pathlist:
|
||||
path_in_str = str(path)
|
||||
print(path_in_str)
|
||||
# print(path_in_str)
|
||||
trouve = False
|
||||
with open(path_in_str) as f:
|
||||
for line in f:
|
||||
if pattern.search(line):
|
||||
print(line)
|
||||
for i, line in enumerate(f.readlines()):
|
||||
m = pattern.match(line)
|
||||
if m:
|
||||
print(path_in_str, ":", i+1, ":", m.group('nomtableau').strip())
|
||||
trouve = True
|
||||
break
|
||||
if not trouve:
|
||||
print(path_in_str, ": -")
|
||||
|
||||
for subdir, dirs, files in os.walk(path):
|
||||
for file in files:
|
||||
|
|
Loading…
Reference in New Issue