From: W. Trevor King Date: Sun, 9 Jan 2011 03:29:58 +0000 (-0500) Subject: Restore INVISIBLE_PATHS which had been cleared by 919a27a22788755c63a7460ec5... X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1c13fd28dc18807544af1d50b69c56bfccf3c753;p=depgraph.git Restore INVISIBLE_PATHS which had been cleared by 919a27a22788755c63a7460ec5... --- 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) :