From 37b3e3e873241ff43c9d827506df75d73931e59a Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Sun, 29 Mar 2020 16:37:59 +0200 Subject: [PATCH] Version 3.1.2 --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- src/dnsrobocert/core/utils.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16849eb0..be805f6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## master - CURRENT + +## 3.1.2 - 29/03/2020 ### Modified * More consistent output for sub-commands launched by DNSroboCert diff --git a/pyproject.toml b/pyproject.toml index 57d28dab..2223b3be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "dnsrobocert" -version = "3.1.1" +version = "3.1.2" description = "A tool to manage your DNS-challenged TLS certificates" license = "MIT" keywords = [ diff --git a/src/dnsrobocert/core/utils.py b/src/dnsrobocert/core/utils.py index 9698bb47..a14da77b 100644 --- a/src/dnsrobocert/core/utils.py +++ b/src/dnsrobocert/core/utils.py @@ -28,7 +28,7 @@ def execute(args: List[str], check: bool = True, env: Dict[str, str] = None): LOGGER.info("Launching command: {0}".format(subprocess.list2cmdline(args))) sys.stdout.write("----------\n") - + error = None try: call(args, env=env)