diff options
author | Jason Chu | 2016-11-07 05:40:19 +0000 |
---|---|---|
committer | Jason Chu | 2016-11-07 05:40:19 +0000 |
commit | 0577ae89ddbb04512c6d621afc3f574eec0383d0 (patch) | |
tree | 8f0a98c45189dee1e17348bc8edb4ec68b7d4570 | |
parent | 0b9b6d78b4dc8de56a34c7908c3f47dbb86ceea7 (diff) | |
download | vim-beancount-0577ae89ddbb04512c6d621afc3f574eec0383d0.tar.gz |
Remove errant print statement
-rw-r--r-- | autoload/beancount.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/autoload/beancount.vim b/autoload/beancount.vim index ecd423b..50a1b33 100644 --- a/autoload/beancount.vim +++ b/autoload/beancount.vim @@ -174,7 +174,6 @@ import os # We intentionally want to ignore stderr so it doesn't mess up our query processing output = subprocess.check_output(['bean-query', vim.eval('a:root_file'), vim.eval('a:query')], stderr=open(os.devnull, 'w')).split('\n') -print(output) output = output[2:] result_list = [y for y in (x.strip() for x in output) if y] |