aboutsummaryrefslogtreecommitdiff
path: root/src/ee/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/__main__.py')
-rw-r--r--src/ee/__main__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ee/__main__.py b/src/ee/__main__.py
index 75688c0..6bb40b0 100644
--- a/src/ee/__main__.py
+++ b/src/ee/__main__.py
@@ -29,8 +29,7 @@ def find_tools():
tools.append(Tool(module_name, name))
return sorted(tools)
-if __name__ == "__main__":
-
+def main():
logging.basicConfig() # you need to initialize logging, otherwise you will not see anything from requests
logging.getLogger().setLevel(logging.DEBUG)
requests_log = logging.getLogger("requests.packages.urllib3")
@@ -51,3 +50,6 @@ if __name__ == "__main__":
eprint("No such tool: {}".format(name))
exit(1)
+
+if __name__ == "__main__":
+ main()