From 2b55687aa5faaf56183cf8c37d5aa83c3874a2e5 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 31 Aug 2012 15:54:26 +0900 Subject: [PATCH] Correct a missed function rename. Serves me right for not testing properly :P --- tools/io_qfmap/entityclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/io_qfmap/entityclass.py b/tools/io_qfmap/entityclass.py index bcf235074..9f61dbedd 100644 --- a/tools/io_qfmap/entityclass.py +++ b/tools/io_qfmap/entityclass.py @@ -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)