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 [".", "_"]:
|
if f[0] in [".", "_"]:
|
||||||
continue
|
continue
|
||||||
if os.path.isdir(os.path.join(path, f)):
|
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:
|
else:
|
||||||
if f[-3:] == ".qc":
|
if f[-3:] == ".qc":
|
||||||
scan_source(os.path.join(path, f), entity_classes)
|
scan_source(os.path.join(path, f), entity_classes)
|
||||||
|
|
Loading…
Reference in a new issue