Correct a missed function rename.

Serves me right for not testing properly :P
This commit is contained in:
Bill Currie 2012-08-31 15:54:26 +09:00
parent ffcd78bc28
commit 2b55687aa5

View file

@ -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)