1
0
mirror of synced 2024-11-22 01:04:23 +01:00

Improve resilience of main.py

This commit is contained in:
jvoisin 2018-03-31 21:15:48 +02:00
parent 1ee936420c
commit 0bbafc4cc5

View File

@ -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))