Update __main__.py

This commit is contained in:
Jay Lee
2023-04-06 05:18:05 -04:00
committed by GitHub
parent b7faa0acae
commit 024177b0c7

View File

@@ -21,7 +21,6 @@ With GAM you can programmatically create users, turn on/off services for users l
For more information, see https://jaylee.us/gam
"""
import logging
import sys
# Note that this file (and only this file) should remain compatible
@@ -50,7 +49,6 @@ def main():
from multiprocessing import set_start_method
set_start_method('fork')
import gam
logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
sys.exit(gam.ProcessGAMCommand(sys.argv))