diff options
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index 5378683..34a8e2d 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -2489,7 +2489,8 @@ class SlackThreadChannel(SlackChannelCommon): if self.label_short_drop_prefix: return name else: - indent = w.config_string(w.config_get("buflist.format.indent")) + indent_expr = w.config_string(w.config_get("buflist.format.indent")) + indent = w.string_eval_expression(indent_expr, {}, {}, {}) return "{}${}".format(indent, name) elif style == "long_default": if self.label_full_drop_prefix: |