Skip to content

Commit

Permalink
Merge pull request #2 from Hexadite/bug/remove_info_log
Browse files Browse the repository at this point in the history
remove conn_info that contains password
  • Loading branch information
hexadite-idan authored Jul 13, 2016
2 parents ce97f08 + 1ba3ef5 commit 437775a
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.2-hexadite',
version='1.1.18.3-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 @@ -333,7 +333,7 @@ def get_auth_details(auth_header=''):

@defer.inlineCallbacks
def _authenticate_with_ntlm(conn_info, url, agent):
log.info('authenticate to url %s with credentials: %s' % (url, conn_info))
log.info('ntlm authenticate to url %s with user: %s' % (url, conn_info.username))
if '@' in conn_info.username:
username, domain = conn_info.username.split('@')
elif '\\' in conn_info.username:
Expand Down

0 comments on commit 437775a

Please sign in to comment.