diff options
author | jshin <i1788179@cc.kyoto-su.ac.jp> | 2018-12-27 18:25:33 +0900 |
---|---|---|
committer | jshin <i1788179@cc.kyoto-su.ac.jp> | 2018-12-27 18:25:33 +0900 |
commit | 127096af69b6a31312a041d75eca60f4c55c6a8c (patch) | |
tree | af3f16567f52880aa66a34102246a07e99fe1f61 | |
parent | ec014e3a8d53b7bbc8a3906013975157d09936a1 (diff) | |
download | deoplete.nvim-127096af69b6a31312a041d75eca60f4c55c6a8c.zip |
Removed print() messages
-rw-r--r-- | rplugin/python3/deoplete/child.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rplugin/python3/deoplete/child.py b/rplugin/python3/deoplete/child.py index 1736a89..cd99486 100644 --- a/rplugin/python3/deoplete/child.py +++ b/rplugin/python3/deoplete/child.py @@ -365,8 +365,6 @@ class Child(logger.LoggingMixin): ctx['candidates'] = source.on_post_filter(ctx) mark = source.mark + ' ' - print(source.name) - print(ctx['candidates']) for candidate in ctx['candidates']: # Set default menu and icase candidate['icase'] = 1 |