We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0c80b commit 806d5c3Copy full SHA for 806d5c3
packages/openshift_client/context.py
@@ -61,7 +61,7 @@ def __init__(self):
61
self.frame_info = None
62
for frame in inspect.stack():
63
module = inspect.getmodule(frame[0])
64
- if module and (module.__name__ == 'openshift' or module.__name__.startswith('openshift.')):
+ if module and (module.__name__ == 'openshift_client' or module.__name__.startswith('openshift_client.')):
65
# The source appears to be within this module; skip this frame
66
continue
67
0 commit comments