diff options
-rw-r--r-- | ftplugin/rst_tables.vim | 1 |
1 files changed, 0 insertions, 1 deletions
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: \ |