diff options
Diffstat (limited to 'gr-wxgui/src/python/common.py')
-rw-r--r-- | gr-wxgui/src/python/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-wxgui/src/python/common.py b/gr-wxgui/src/python/common.py index 3641ae644..1410d29df 100644 --- a/gr-wxgui/src/python/common.py +++ b/gr-wxgui/src/python/common.py @@ -121,7 +121,7 @@ def _register_access_method(destination, controller, key): def set(value): controller[key] = value setattr(destination, 'set_'+key, set) def get(): return controller[key] - setattr(destination, 'get_'+key, get) + setattr(destination, 'get_'+key, get) def register_access_methods(destination, controller): """ |