From ae5210a6a9a294120a34d9a92a86f06de4d7aeb4 Mon Sep 17 00:00:00 2001 From: Sergey Klyuykov Date: Thu, 10 May 2018 16:26:45 +1000 Subject: [PATCH] Release up 0.1.5 -> 0.1.6 --- polemarch/__init__.py | 2 +- polemarch/main/utils.py | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/polemarch/__init__.py b/polemarch/__init__.py index 4f19d3a1..8f9d0130 100644 --- a/polemarch/__init__.py +++ b/polemarch/__init__.py @@ -1,6 +1,6 @@ from .environment import prepare_environment -__version__ = "0.1.5" +__version__ = "0.1.6" def _main(**kwargs): # pylint: disable=unused-variable diff --git a/polemarch/main/utils.py b/polemarch/main/utils.py index 6e6381f9..31e1e1e5 100644 --- a/polemarch/main/utils.py +++ b/polemarch/main/utils.py @@ -506,7 +506,7 @@ def execute(self, func, *args, **kwargs): with self.__class__(self._excepts, **self._kwargs): return func(*args, **kwargs) type, value, traceback_obj = sys.exc_info() - if type is not None: + if type is not None: # nocv logger.debug(traceback.format_exc()) return type, value, traceback_obj diff --git a/requirements.txt b/requirements.txt index 4d91c3af..dc3b8bec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -25,6 +25,6 @@ PyMySQL python-memcached # Ansible required packages -ansible>=2.1, <=2.4.3 +ansible>=2.1, <=2.5.2 paramiko<=2.4.0 pywinrm[kerberos]==0.3.0