From 206ef7445a69afa543ccfa8e13983483aa966623 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 13 Nov 2017 21:17:20 -0500 Subject: [PATCH] Remove debug printing statement Signed-off-by: Jonathan Rajotte --- lttng_ivc/utils/utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lttng_ivc/utils/utils.py b/lttng_ivc/utils/utils.py index 1660aba..7553041 100644 --- a/lttng_ivc/utils/utils.py +++ b/lttng_ivc/utils/utils.py @@ -88,14 +88,11 @@ def find_file(root, name): """ Returns the absolute path or None. """ - print(root) - print(name) abs_path = None for base, dirs, files in os.walk(root): for tmp in files: if tmp.endswith(name): abs_path = os.path.abspath(os.path.join(base, tmp)) - print(abs_path) return abs_path -- 2.34.1