diff options
author | Jorge Scandaliaris <jorgesca@users.noreply.github.com> | 2015-04-24 20:13:28 -0300 |
---|---|---|
committer | Jorge Scandaliaris <jorgesca@users.noreply.github.com> | 2015-04-24 20:13:28 -0300 |
commit | b0defcc4ea77717ec255003621bae55769e4c75c (patch) | |
tree | 41153ff1f43ca2d0ddddc6dace5b5105c715935e /ftplugin | |
parent | 7d8699bfb0c4e1a7df0f7c5e4e9d3f62b9721f91 (diff) | |
download | vim-rst-tables-b0defcc4ea77717ec255003621bae55769e4c75c.tar.gz vim-rst-tables-b0defcc4ea77717ec255003621bae55769e4c75c.tar.bz2 vim-rst-tables-b0defcc4ea77717ec255003621bae55769e4c75c.zip |
Remove print statement used for debugging
Diffstat (limited to 'ftplugin')
-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: \ |