diff options
Diffstat (limited to 'python/bncompleter.py')
| -rw-r--r-- | python/bncompleter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/bncompleter.py b/python/bncompleter.py index fcfccc30..a23f6007 100644 --- a/python/bncompleter.py +++ b/python/bncompleter.py @@ -199,7 +199,7 @@ class Completer: not (noprefix and word[:n+1] == noprefix)): match = "%s.%s" % (expr, word) try: - val = getattr(thisobject, word) + val = getattr_static(thisobject, word) except Exception: pass # Include even if attribute not set else: |
