Skip to content

Commit

Permalink
fix pip install message for kerberos
Browse files Browse the repository at this point in the history
  • Loading branch information
ltamaster committed Jun 12, 2020
1 parent 3e0e7d6 commit 7ebd048
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contents/winrm-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
sys.exit(1)

if authentication == "kerberos" and not KRB_INSTALLED:
log.error("Kerberos not installed, try: pip install pywinrm[kerberos]")
log.error("Kerberos not installed, try: pip install requests-kerberos")
sys.exit(1)

if authentication == "kerberos" and not HAS_PEXPECT:
Expand Down
2 changes: 1 addition & 1 deletion contents/winrm-exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
sys.exit(1)

if authentication == "kerberos" and not KRB_INSTALLED:
log.error("Kerberos not installed, try: pip install pywinrm[kerberos]")
log.error("Kerberos not installed, try: pip install requests-kerberos")
sys.exit(1)

if authentication == "kerberos" and not HAS_PEXPECT:
Expand Down

0 comments on commit 7ebd048

Please sign in to comment.