Skip to content

Commit 4921450

Browse files
IAlibayorbeckst
authored andcommitted
Actually include the fix
1 parent 4b8cb70 commit 4921450

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MDAnalysisData/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def _read_description(filename, description_dir='descr'):
207207
"""
208208
# The descr directory should be in the same directory as this file base.py.
209209
# `resource_string` returns bytes, which we need to decode to UTF-8
210-
path = importlib.resources.files(__name__) / description_dir / filename
210+
path = importlib.resources.files('MDAnalysisData') / description_dir / filename
211211
DESCR = path.read_bytes().decode("utf-8")
212212
return DESCR
213213

0 commit comments

Comments
 (0)