Update progress.py (#300)

This commit is contained in:
MegaMech 2023-04-04 19:54:10 -06:00 committed by GitHub
parent 0b7ad56ad9
commit 772091700c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def GetNonMatchingFunctions(files):
# credits.c contains Japanese characters which are not supported by utf-8
# To prevent errors it cannot be included.
if (file == "src/credits.c"):
continue
continue
with open(file) as f:
functions += re.findall(NON_MATCHING_PATTERN, f.read(), re.DOTALL)
@ -33,6 +33,8 @@ def CountMipsToCFunctions(files):
functions = []
for file in files:
if (file == "src/credits.c"):
continue
with open(file) as f:
functions += re.findall(MIPS_TO_C_FUNC_COUNT_PATTERN, f.read(), re.DOTALL)
@ -41,6 +43,8 @@ def CountNonMatchingFunctions(files):
functions = []
for file in files:
if (file == "src/credits.c"):
continue
with open(file) as f:
functions += re.findall(NON_MATCHING_FUNC_COUNT_PATTERN, f.read(), re.DOTALL)