10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-26 15:12:14 +02:00

Corrected graphviz bug

This commit is contained in:
Anthony Scemama 2015-07-28 15:55:13 +02:00
parent e39afd6c2c
commit 37599336b0

View File

@ -240,7 +240,10 @@ if __name__ == '__main__':
print " ".join(sorted(m.l_descendant_unique([module])))
if arguments["create_png"]:
m.create_png(l_module)
try:
m.create_png(l_module)
except RuntimeError:
pass
if arguments["clean"] or arguments["create_git_ignore"]: