Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Aug 22, 2023
1 parent 3ac4dcb commit 0f0664d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import sphinx

if sphinx.version_info < (7,):
from sphinx.testing.path import path
_rootdir = path(__file__).parent.abspath() / 'roots'
from sphinx.testing.path import path as Path
_rootdir = Path(__file__).parent.abspath() / 'roots'
else:
from pathlib import Path
_rootdir = Path(__file__).parent.resolve() / 'roots'
Expand Down

0 comments on commit 0f0664d

Please sign in to comment.