diff options
author | David Tardon <dtardon@redhat.com> | 2012-04-02 18:32:19 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-04-02 18:32:57 +0200 |
commit | b4f5ef6304c0caf162a044a4022b4371535ec29a (patch) | |
tree | 933053df418a46027daa6507a561577615eb20e4 | |
parent | 8863cc9e03a6f30ff6655ec8dc951b6292108c58 (diff) |
call the right function :blush:
-rw-r--r-- | solenv/gdb/boost/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/solenv/gdb/boost/__init__.py b/solenv/gdb/boost/__init__.py index 734ba01e108f..353ee3b09b8b 100644 --- a/solenv/gdb/boost/__init__.py +++ b/solenv/gdb/boost/__init__.py @@ -24,9 +24,9 @@ import boost.smart_ptr import boost.unordered def register_pretty_printers(obj): - boost.optional.register_pretty_printer(obj) - boost.ptr_container.register_pretty_printer(obj) - boost.smart_ptr.register_pretty_printer(obj) - boost.unordered.register_pretty_printer(obj) + boost.optional.register_pretty_printers(obj) + boost.ptr_container.register_pretty_printers(obj) + boost.smart_ptr.register_pretty_printers(obj) + boost.unordered.register_pretty_printers(obj) # vim:set filetype=python shiftwidth=4 softtabstop=4 expandtab: |