Skip to content

Commit

Permalink
fixed to mkdir token dir for OIDC
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Oct 21, 2020
1 parent 908aa5d commit fd37ffa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pandatools/PandaToolsPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "1.4.43"
release_version = "1.4.44"
2 changes: 2 additions & 0 deletions pandatools/openidc_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class OpenIdConnect_Utils:
# constructor
def __init__(self, token_dir, log_stream, verbose=False):
self.token_dir = token_dir
if not os.path.exists(token_dir):
os.makedirs(token_dir)
self.log_stream = log_stream
self.verbose = verbose

Expand Down

0 comments on commit fd37ffa

Please sign in to comment.