Skip to content

Commit

Permalink
python: add graph drawing tools recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
aroulin committed Jun 26, 2019
1 parent 993199c commit 66bf0b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/shared_hostnames_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def find_hostnames(string):
args.add_argument("output_file", help="file to write DOT file to")
args.add_argument("malware_projection", help="file to write DOT file to")
args.add_argument("resource_projection", help="file to write DOT file to")
args.add_argument("graph_tool", help="tool to draw graphs to png", default="fdp", nargs='?')
args.add_argument("graph_tool", help="tool to draw graphs to png (fpd, sfdp, neato)", default="fdp", nargs='?')
args = args.parse_args()

network = networkx.Graph()
Expand Down
2 changes: 1 addition & 1 deletion python/shared_images_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
args.add_argument("output_file", help="file to write DOT file to")
args.add_argument("malware_projection", help="file to write DOT file to")
args.add_argument("resource_projection", help="file to write DOT file to")
args.add_argument("graph_tool", help="tool to draw graphs to png", default="fdp", nargs='?')
args.add_argument("graph_tool", help="tool to draw graphs to png (fpd, sfdp, neato)", default="fdp", nargs='?')
args = args.parse_args()

network = networkx.Graph()
Expand Down

0 comments on commit 66bf0b7

Please sign in to comment.