diff options
author | Ariel Manzur <ariel@godotengine.org> | 2018-01-24 19:42:33 -0300 |
---|---|---|
committer | Ariel Manzur <ariel@godotengine.org> | 2018-01-24 19:42:33 -0300 |
commit | 70fca42cd91d29da4b0844b5fb84923ea041a75a (patch) | |
tree | 8c776eebe5212a4f6b789d3c3602738e0dbc7dcb | |
parent | 81426ff0a84b0b7f9c52f6f908fe30bec538fa8b (diff) |
removed debug print
-rw-r--r-- | methods.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/methods.py b/methods.py index a1ec93bfc1..b7515484c5 100644 --- a/methods.py +++ b/methods.py @@ -1504,7 +1504,6 @@ def split_lib(self, libname, src_list = None, env_lib = None): if base != cur_base and len(list) > max_src: if num > 0: lib = env_lib.add_library(libname + str(num), list) - print("adding library ", libname, num) lib_list.append(lib) list = [] num = num + 1 |