From 1d2e18b29045213c248388152990f38803bea304 Mon Sep 17 00:00:00 2001 From: kshcherban Date: Thu, 8 Nov 2018 13:49:48 +0100 Subject: [PATCH] Add hack for pyinstaller --- acme-runner.py | 2 ++ 1 file changed, 2 insertions(+) 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()