mirror of
https://github.com/MISP/misp-galaxy.git
synced 2025-02-17 01:06:22 +00:00
fix: [graph.py] small fix to make it work
This commit is contained in:
parent
1276d834dd
commit
ca1bc24f65
1 changed files with 7 additions and 7 deletions
|
@ -162,7 +162,7 @@ if args.uuid:
|
||||||
dot.append('overlap=scale;')
|
dot.append('overlap=scale;')
|
||||||
generated_dot = gen_dot(uuid)
|
generated_dot = gen_dot(uuid)
|
||||||
if len(generated_dot) == 0:
|
if len(generated_dot) == 0:
|
||||||
print("Empty graph for uuid: {}".format(uuid))
|
print("Empty graph for uuid: {}".format(uuid))
|
||||||
exit()
|
exit()
|
||||||
print("Generating graph for uuid: {}".format(uuid))
|
print("Generating graph for uuid: {}".format(uuid))
|
||||||
dot += generated_dot
|
dot += generated_dot
|
||||||
|
@ -189,7 +189,7 @@ elif args.all:
|
||||||
# dg.source = '\n'.join(dot)
|
# dg.source = '\n'.join(dot)
|
||||||
|
|
||||||
dg = Digraph(format='png', body=dot)
|
dg = Digraph(format='png', body=dot)
|
||||||
# print(dg.source)
|
#print(dg.source)
|
||||||
dg.render(engine='dot', filename='graphs/{}'.format(uuid), cleanup=False)
|
dg.render(filename='graphs/{}'.format(uuid))
|
||||||
else:
|
else:
|
||||||
exit("No parameters given, use --help for more info.")
|
exit("No parameters given, use --help for more info.")
|
||||||
|
|
Loading…
Add table
Reference in a new issue