diff --git a/acme-runner.py b/acme-runner.py index 5192387..cc64a96 100755 --- a/acme-runner.py +++ b/acme-runner.py @@ -4,6 +4,8 @@ """Convenience wrapper for running acme-nginx directly from source tree.""" from acme_nginx.client import main +# uncomment this line for pyinstaller, this is boto3 dependency that pyinstaller ignores +#import configparser if __name__ == '__main__': main()