diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2018-07-01 01:09:45 +0100 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2018-07-01 01:09:45 +0100 |
commit | b072c1390b2722c616f56028503598a5990cb0c5 (patch) | |
tree | 016b109892ce4ff82e26768edb8dd32903574a68 | |
parent | 0319ce5079bffec5cad9637ee396d489194d63e7 (diff) | |
download | poezio-b072c1390b2722c616f56028503598a5990cb0c5.tar.gz poezio-b072c1390b2722c616f56028503598a5990cb0c5.tar.bz2 poezio-b072c1390b2722c616f56028503598a5990cb0c5.tar.xz poezio-b072c1390b2722c616f56028503598a5990cb0c5.zip |
Replace information_popup_type_filter occurences with correct naming
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | doc/source/configuration.rst | 2 | ||||
-rw-r--r-- | poezio/core/core.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index 8f57dcc0..fc862f16 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -653,7 +653,7 @@ or the way messages are displayed. A list of message types that should make the information buffer grow Possible values: ``error``, ``roster``, ``warning``, ``info``, ``help`` - information_popup_type_filter + information_buffer_type_filter **Default value:** ``[empty]`` diff --git a/poezio/core/core.py b/poezio/core/core.py index 7c6ad886..d7f8a018 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -1429,7 +1429,8 @@ class Core(object): filter_types = config.get('information_buffer_type_filter').split(':') if typ.lower() in filter_types: log.debug( - 'Did not show the message:\n\t%s> %s \n\tdue to information_popup_type_filter configuration', + 'Did not show the message:\n\t%s> %s \n\tdue to ' + 'information_buffer_type_filter configuration', typ, msg) return False filter_messages = config.get('filter_info_messages').split(':') |