From 1c13fd28dc18807544af1d50b69c56bfccf3c753 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 8 Jan 2011 22:29:58 -0500 Subject: [PATCH] Restore INVISIBLE_PATHS which had been cleared by 919a27a22788755c63a7460ec5... --- depgraph2dot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/depgraph2dot.py b/depgraph2dot.py index f758744..f2b1205 100755 --- a/depgraph2dot.py +++ b/depgraph2dot.py @@ -47,7 +47,7 @@ USER=getpwuid(getuid())[0] # get effective user name INVISIBLE_MODS=('__future__','copy','doctest','glob','optparse','os','qt','re', 'StringIO','string','sys','textwrap','time','types','unittest') -INVISIBLE_PATHS=[] #(r'.*',) +INVISIBLE_PATHS=(r'.*',) VISIBLE_PATHS=(r'.*%s.*' % USER,r'.*comedi.*') def _pathmatch(regexp_tuple, path) : -- 2.26.2