Skip to content

Commit

Permalink
Release up 0.1.5 -> 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
onegreyonewhite committed May 10, 2018
1 parent 6cd97e0 commit ae5210a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion polemarch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .environment import prepare_environment

__version__ = "0.1.5"
__version__ = "0.1.6"

def _main(**kwargs):
# pylint: disable=unused-variable
Expand Down
2 changes: 1 addition & 1 deletion polemarch/main/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ae5210a

Please sign in to comment.