Update kubernetes/base/config/exec_provider.py

Co-authored-by: Patrick J. McNerthney <pat@mcnerthney.com>
This commit is contained in:
Julien Eid 2022-05-20 06:31:15 -04:00 committed by GitHub
parent fe2546147c
commit 35bcb7f20c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ class ExecProvider(object):
additional_vars[name] = value
self.env.update(additional_vars)
self.cwd = cwd if cwd else None
self.cwd = cwd or None
def run(self, previous_response=None):
kubernetes_exec_info = {