incorrectly had CMake storing directory names as filepaths

also correct compiler warning for collada and remove print from own last commit.
This commit is contained in:
Campbell Barton
2011-06-29 13:16:11 +00:00
parent d86d68d4e6
commit 8f89e7a309
3 changed files with 5 additions and 6 deletions

View File

@@ -82,7 +82,6 @@ def complete(line, cursor, namespace, private):
if RE_MODULE.match(line):
from . import complete_import
matches = complete_import.complete(line)
print(private)
if not private:
matches[:] = [m for m in matches if m[:1] != "_"]
matches.sort()