Skip to content

Commit

Permalink
Change tempfile imports to testpath.tempdir
Browse files Browse the repository at this point in the history
  • Loading branch information
mpacer committed Nov 18, 2016
1 parent 7e23f87 commit 9a22426
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nbconvert/exporters/tests/test_latex.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from nbformat import write
from nbformat import v4
from ipython_genutils.testing.decorators import onlyif_cmds_exist
from tempfile import TemporaryDirectory
from testpath.tempdir import TemporaryDirectory


class TestLatexExporter(ExportersTestsBase):
Expand Down
2 changes: 1 addition & 1 deletion nbconvert/preprocessors/svg2pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import subprocess

from ipython_genutils.py3compat import cast_unicode_py2
from tempfile import TemporaryDirectory
from testpath.tempdir import TemporaryDirectory
from traitlets import Unicode, default

from .convertfigures import ConvertFiguresPreprocessor
Expand Down

0 comments on commit 9a22426

Please sign in to comment.