From aa456e415ba86ba9519a19b4859a7d02d8f703ef Mon Sep 17 00:00:00 2001 From: ZyX Date: Mon, 5 Jan 2015 23:53:37 +0300 Subject: [PATCH] Fix error present when trying to use CtrlP Ref #1244 --- powerline/segments/vim/plugin/ctrlp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerline/segments/vim/plugin/ctrlp.py b/powerline/segments/vim/plugin/ctrlp.py index 80cabb76..651e0b74 100644 --- a/powerline/segments/vim/plugin/ctrlp.py +++ b/powerline/segments/vim/plugin/ctrlp.py @@ -110,7 +110,7 @@ def ctrlp_stl_right_prog(pl, progress): ''' return [ { - 'contents': progress, + 'contents': str(progress), 'highlight_group': ['ctrlp.progress', 'file_name'], }, ]