Skip to content

Commit

Permalink
Fix up client_auth example
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 committed Jul 15, 2024
1 parent acc48e9 commit 2811a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples/client_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main() -> None:
client = spnego.client("username", "password", hostname="server")

in_token = None
while client.complete:
while not client.complete:
out_token = client.step(in_token)
if not out_token:
break
Expand Down

0 comments on commit 2811a7e

Please sign in to comment.