KERNEL: fix to display all installable modules

bzr revid: ced-6dc061c55512c2687bdb6f21b397f47e07eb1bdd
This commit is contained in:
ced 2007-04-21 13:30:47 +00:00
parent f6b9954774
commit d4d0e528ac
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ print 'digraph G {'
for f in os.listdir('.'):
if os.path.isfile(os.path.join(f,"__terp__.py")):
info=eval(file(os.path.join(f,"__terp__.py")).read())
if info.get('active', True):
if info.get('installable', True):
for name in info['depends']:
print '\t%s -> %s;' % (f, name)
print '}'