diff options
author | vg <vgm+dev@devys.org> | 2019-05-22 21:07:39 +0200 |
---|---|---|
committer | vg <vgm+dev@devys.org> | 2019-05-22 21:07:39 +0200 |
commit | 33ece417749ee991da09471750c38880516f0fe0 (patch) | |
tree | 0db22cc143464e03c5c766e0b81d3dc616207222 | |
parent | 49e2676d4fffa3fb377002f1f9f30bcac46915cd (diff) | |
download | acme-dns-tiny-33ece417749ee991da09471750c38880516f0fe0.tar.gz acme-dns-tiny-33ece417749ee991da09471750c38880516f0fe0.tar.bz2 acme-dns-tiny-33ece417749ee991da09471750c38880516f0fe0.zip |
miss argument to main() which was not visible from unittests
-rw-r--r-- | acme_dns_tiny.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acme_dns_tiny.py b/acme_dns_tiny.py index adeb812..ca29155 100644 --- a/acme_dns_tiny.py +++ b/acme_dns_tiny.py @@ -322,4 +322,4 @@ def main(args): if __name__ == "__main__": - main() + main(None) |