Skip to content

Commit 8a966a6

Browse files
authored
bugfix: remove bibtex argument from build_tex_cmd_sequence
1 parent 47eae1d commit 8a966a6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

jupyterlab_latex/build.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,7 @@ def get(self, path = ''):
226226
whitelist=[tex_base_name+'.pdf', tex_base_name+'.synctex.gz'],
227227
greylist=[tex_base_name+'.aux']
228228
):
229-
bibtex = self.bib_condition()
230-
cmd_sequence = self.build_tex_cmd_sequence(tex_base_name,
231-
run_bibtex=bibtex)
229+
cmd_sequence = self.build_tex_cmd_sequence(tex_base_name)
232230
out = yield self.run_latex(cmd_sequence)
233231
self.finish(out)
234232

0 commit comments

Comments
 (0)