From 3041ae14d47fa961d827a853390326a6743c4e21 Mon Sep 17 00:00:00 2001 From: Ian Date: Sun, 10 Jul 2016 14:16:04 +0100 Subject: [PATCH] Properly support multiple bibliography plugins --- latex_cite_completions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/latex_cite_completions.py b/latex_cite_completions.py index 30a622c34..decad5214 100644 --- a/latex_cite_completions.py +++ b/latex_cite_completions.py @@ -370,7 +370,7 @@ def _run_command(plugin_name): else: for plugin_name in plugins: if not plugin_name.endswith('_bibliography'): - plugins = '{0}_bibliography'.format(plugins) + plugin_name = '{0}_bibliography'.format(plugins) try: result = _run_command(plugin_name) except BibPluginError: