Skip to content

Commit

Permalink
Merge pull request #282 from badcure/040_hotfix
Browse files Browse the repository at this point in the history
Fixing an issue found with the 'vendor' directory
  • Loading branch information
badcure authored Nov 4, 2019
2 parents d71226f + 2c89e54 commit 25bc5db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

__version__ = '0.4.1beta1'
__version__ = '0.4.1'
project_name = 'pywinrm'

# PyPi supports only reStructuredText, so pandoc should be installed
Expand All @@ -21,7 +21,7 @@
author_email='[email protected]',
url='http://github.com/diyan/pywinrm/',
license='MIT license',
packages=('winrm',),
packages=('winrm', 'winrm.tests', 'winrm.vendor.requests_kerberos'),
package_data={'winrm.tests': ['*.ps1']},
install_requires=['xmltodict', 'requests>=2.9.1', 'requests_ntlm>=0.3.0', 'six'],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion winrm/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

HAVE_KERBEROS = False
try:
from .vendor.requests_kerberos import HTTPKerberosAuth, REQUIRED
from winrm.vendor.requests_kerberos import HTTPKerberosAuth, REQUIRED

HAVE_KERBEROS = True
except ImportError:
Expand Down

0 comments on commit 25bc5db

Please sign in to comment.