mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Correct a missed function rename.
Serves me right for not testing properly :P
This commit is contained in:
parent
ffcd78bc28
commit
2b55687aa5
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ def scan_directory(path, entity_classes):
|
|||
if f[0] in [".", "_"]:
|
||||
continue
|
||||
if os.path.isdir(os.path.join(path, f)):
|
||||
build_entityclasses(os.path.join(path, f), entity_classes)
|
||||
scan_directory(os.path.join(path, f), entity_classes)
|
||||
else:
|
||||
if f[-3:] == ".qc":
|
||||
scan_source(os.path.join(path, f), entity_classes)
|
||||
|
|
Loading…
Reference in a new issue