Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-29 17:16:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-29 17:16:11 +0400
commit8f89e7a309fa88bba05d65d8828d20322f0a25ab (patch)
treef757f71fe64121825ade91b5ad551ef2c62a84b6 /release
parentd86d68d4e64f7af9c6675481bd96d998620a353f (diff)
incorrectly had CMake storing directory names as filepaths
also correct compiler warning for collada and remove print from own last commit.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/console/intellisense.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/scripts/modules/console/intellisense.py b/release/scripts/modules/console/intellisense.py
index a4793e1a9b6..a177b305fda 100644
--- a/release/scripts/modules/console/intellisense.py
+++ b/release/scripts/modules/console/intellisense.py
@@ -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()