From ed52b26ac52057225cbd27f4c82953aa7737b7e4 Mon Sep 17 00:00:00 2001 From: Costa Shulyupin Date: Thu, 19 Jul 2018 11:41:45 +0300 Subject: [PATCH] -try --- srcxray.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcxray.py b/srcxray.py index 1403161..d0d10fd 100755 --- a/srcxray.py +++ b/srcxray.py @@ -168,10 +168,10 @@ def call_tree(node, printed=None, level=0): if a in local_printed or a in black_list: continue local_printed.add(a) - try: - call_tree(line.split()[1], printed, level + 1) - except Exception: - pass + # try: + call_tree(line.split()[1], printed, level + 1) + # except Exception: + # pass return ''