Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
degagne committed Mar 3, 2022
1 parent 36decff commit 1113e0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion krb5ticket/krb5.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def acquire_with_keytab(
temp_dir = tempfile.mkdtemp("-krb5")
temp_ccache = pathlib.Path(temp_dir).joinpath("ccache")
try:
krb5_creds.setdefault("store", {})["ccache"] = temp_ccache
krb5_creds.setdefault("store", {})["ccache"] = temp_ccache.as_posix()
return self._store_creds(
self._acquire_creds(krb5_creds),
self.ccache,
Expand Down
2 changes: 1 addition & 1 deletion krb5ticket/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.0.2"
version = "1.0.3"

0 comments on commit 1113e0b

Please sign in to comment.