Fix indentation and exception handling in sqlmap.py

This commit is contained in:
ikramqmr 2025-11-30 21:10:23 +11:00 committed by GitHub
parent 6d4123c27d
commit 6cd11e422c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -635,3 +635,14 @@ if __name__ == "__main__":
else:
# cancelling postponed imports (because of CI/CD checks)
__import__("lib.controller.controller")
if __name__ == " __main__":
try:
main()
except keyboardinterrupt:
pass
except systemexit:
raise
except
traceback.print_exc()