Skip to content

Commit

Permalink
Merge pull request #160 from bradmwilliams/ocp-frameinfo-fix
Browse files Browse the repository at this point in the history
Updating the frameinfo check with the new package name
  • Loading branch information
bradmwilliams authored Mar 26, 2024
2 parents 7f0c80b + 9297688 commit ca1de74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ansible/rebuild_module.digest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
65511dbbcdc73c5d2414f3ee7a906bd6 -
423bf87bb4d7eac2c537432aaad9f7bb -

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/openshift_client/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self):
self.frame_info = None
for frame in inspect.stack():
module = inspect.getmodule(frame[0])
if module and (module.__name__ == 'openshift' or module.__name__.startswith('openshift.')):
if module and (module.__name__ == 'openshift_client' or module.__name__.startswith('openshift_client.')):
# The source appears to be within this module; skip this frame
continue

Expand Down

0 comments on commit ca1de74

Please sign in to comment.