Skip to content

Commit

Permalink
Merge pull request #4 from Hexadite/bug/remove_info_log
Browse files Browse the repository at this point in the history
remove info log
  • Loading branch information
Max Braitmaiere authored Aug 4, 2016
2 parents 437775a + f847406 commit 17baef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup_kwargs = dict(
name='txwinrm',
version='1.1.18.3-hexadite',
version='1.1.18.4-hexadite',
description='Asynchronous Python WinRM client',
long_description=open('README.rst').read(),
license='See LICENSE file',
Expand Down
2 changes: 1 addition & 1 deletion txwinrm/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ def send_request(self, request_template_name, **kwargs):
except Exception as e:
raise e
elif self._conn_info.auth_type == 'ntlm':
log.debug('re-authenticate ntlm with url %s, connection info %s' % (self._url, self._conn_info))
log.debug('re-authenticate ntlm with url %s, user %s' % (self._url, self._conn_info.username))
# re-authenticate ntlm
auth = yield _authenticate_with_ntlm(self._conn_info, self._url, self.agent)
# set the new ntlm authorization header
Expand Down

0 comments on commit 17baef3

Please sign in to comment.