Skip to content

Commit 24c8c58

Browse files
adrivincaglatterf42
authored andcommitted
Correct path in water module to package_path
1 parent 37bb1c2 commit 24c8c58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

message_ix_models/model/water/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
from message_ix_models import Context
1313
from message_ix_models.model.structure import get_codes
14-
from message_ix_models.util import load_private_data
14+
from message_ix_models.util import load_package_data
1515

1616
log = logging.getLogger(__name__)
1717

@@ -51,7 +51,7 @@ def read_config(context=None):
5151
_parts = list(parts)
5252
_parts[-1] += ".yaml"
5353

54-
context[key] = load_private_data(*_parts)
54+
context[key] = load_package_data(*_parts)
5555

5656
return context
5757

0 commit comments

Comments
 (0)