Skip to content

Commit acd7126

Browse files
committed
Allow re-fetching after recent changes
1 parent a10ab98 commit acd7126

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

stdlib_list/fetch.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33

44
from sphinx.ext.intersphinx import fetch_inventory
55

6-
from . import base_dir, get_canonical_version, short_versions, list_dir
6+
from . import get_canonical_version, short_versions
7+
8+
base_dir = os.path.dirname(os.path.realpath(__file__))
9+
10+
list_dir = os.path.join(base_dir, "lists")
711

812

913
class DummyConfig(object):

0 commit comments

Comments
 (0)