Changeset 6118
- Timestamp:
- Jan 6, 2009, 9:58:20 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/tools/dependency_graphs/anuga_depgraph2dot.py
r6115 r6118 39 39 40 40 if s.startswith('anuga.config'): return True # Except config.py 41 if s == 'anuga': return True # Except the anuga root itself 41 42 42 43 sys.stderr.write('Draw dependency to %s\n' % s) … … 73 74 # Remove leading 'anuga' in label 74 75 I = s.split('.') 75 if I[0] == 'anuga': 76 I = I[1:] 76 77 if len(I) > 1: 78 if I[0] == 'anuga': 79 I = I[1:] 77 80 78 81 return '\\.\\n'.join(I)
Note: See TracChangeset
for help on using the changeset viewer.