Skip to content
Snippets Groups Projects
Commit 0bbafc4c authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Improve resilience of main.py

parent 1ee93642
Branches
Tags
No related merge requests found
......@@ -20,6 +20,9 @@ def create_arg_parser():
def show_meta(file_name:str):
p = parser_factory.get_parser(file_name)
if p is None:
print("[-] %s's format (%s) is not supported" % (file_name, p))
return
for k,v in p.get_meta().items():
print("%s: %s" % (k, v))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment