mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Tools - Fix string check false positive on tagging macro (#8917)
This commit is contained in:
parent
86f08af250
commit
89b8ed4b56
@ -78,6 +78,8 @@ def main(argv):
|
|||||||
allDefinedStrings = list(sorted(set(allDefinedStrings)))
|
allDefinedStrings = list(sorted(set(allDefinedStrings)))
|
||||||
allUsedStrings = list(sorted(set(allUsedStrings)))
|
allUsedStrings = list(sorted(set(allUsedStrings)))
|
||||||
|
|
||||||
|
if ("str_ace_tagging_name" in allUsedStrings): allUsedStrings.remove("str_ace_tagging_name") # Handle tagging macro
|
||||||
|
|
||||||
print("-----------")
|
print("-----------")
|
||||||
countUnusedStrings = 0
|
countUnusedStrings = 0
|
||||||
countUndefinedStrings = 0
|
countUndefinedStrings = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user