Merge pull request #1 from trustedsec/dev

updates for json
This commit is contained in:
Justin Bollinger
2018-01-26 18:44:25 -05:00
committed by GitHub

View File

@@ -529,9 +529,11 @@ def main():
"98": show_readme,
"99": quit_hc
}
task = input("\nSelect a task: ")
options[task]()
try:
task = input("\nSelect a task: ")
options[task]()
except KeyError:
pass
# Boilerplate
if __name__ == '__main__':
main()