aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@qt.io>2019-05-15 10:03:00 +0300
committerAntti Kokko <antti.kokko@qt.io>2019-08-22 06:26:17 +0000
commitae98dacea57eeacaabcdf5f4acf152964265ab9d (patch)
tree28718fb2f9f89f83473a5a75e37ca4e4132b7321
parent370cbb2e529506c308300bfeee5e5493aa10b48d (diff)
Remove unnecessry debug prints
Change-Id: Iaff8bb412281f46c560c0a930d67dca512e4d148 Reviewed-by: Antti Kokko <antti.kokko@qt.io>
-rw-r--r--packaging-tools/create_installer.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/packaging-tools/create_installer.py b/packaging-tools/create_installer.py
index c98d4051e..36d9b8c47 100644
--- a/packaging-tools/create_installer.py
+++ b/packaging-tools/create_installer.py
@@ -146,9 +146,7 @@ def main():
##############################################################
def check_required_tools():
"""Check that valid tools are present in the build environment."""
- print(sys.path)
from distutils.spawn import find_executable
- print(find_executable('7z'))
if not find_executable('7z'):
raise EnvironmentError("7z tool not found in the PATH")
@@ -1269,7 +1267,6 @@ def inject_update_rcc_to_archive(archive_file_path, file_to_be_injected):
if not os.path.isfile(archive_file_path):
print('*** Unable to locate file: {0}'.format(archive_file_path))
archive_file_name = os.path.basename(archive_file_path)
- print(archive_file_name)
# copy to tmp location
tmp_dir = os.path.join(os.path.dirname(archive_file_path), '_tmp')
bldinstallercommon.create_dirs(tmp_dir)