summaryrefslogtreecommitdiff
path: root/poezio/core
diff options
context:
space:
mode:
authorLink Mauve <linkmauve@example.com>2018-07-01 18:30:15 +0200
committerLink Mauve <linkmauve@example.com>2018-07-01 18:30:15 +0200
commit29b10b6c2be620684e5892f821b69727a7fb07f7 (patch)
treee8260fa981072563e56ce98562e4ff83233ac852 /poezio/core
parent01a4920bc8c9ec9cfdec8b75c46af17e46316961 (diff)
parentb072c1390b2722c616f56028503598a5990cb0c5 (diff)
downloadpoezio-29b10b6c2be620684e5892f821b69727a7fb07f7.tar.gz
poezio-29b10b6c2be620684e5892f821b69727a7fb07f7.tar.bz2
poezio-29b10b6c2be620684e5892f821b69727a7fb07f7.tar.xz
poezio-29b10b6c2be620684e5892f821b69727a7fb07f7.zip
Merge branch 'information_popup' into 'master'
Replace information_popup_type_filter occurences with correct naming See merge request poezio/poezio!4
Diffstat (limited to 'poezio/core')
-rw-r--r--poezio/core/core.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index b708e2cf..e24335fb 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(':')