From b0defcc4ea77717ec255003621bae55769e4c75c Mon Sep 17 00:00:00 2001 From: Jorge Scandaliaris Date: Fri, 24 Apr 2015 20:13:28 -0300 Subject: Remove print statement used for debugging --- ftplugin/rst_tables.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/ftplugin/rst_tables.vim b/ftplugin/rst_tables.vim index 88ef42c..6c994ce 100644 --- a/ftplugin/rst_tables.vim +++ b/ftplugin/rst_tables.vim @@ -291,7 +291,6 @@ def reformat_table(): encoding = vim.eval("&encoding") slice = map(lambda x: codecs.decode(x, encoding), \ vim.current.buffer[upper - 1:lower]) - print 'encoding: ', encoding table = parse_table(slice) slice = draw_table(indent, table) vim.current.buffer[upper - 1:lower] = map(lambda x: \ -- cgit v1.2.3