Skip to content

Commit 2e1eff6

Browse files
committed
Fix when get_package_root works
1 parent e314e32 commit 2e1eff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/manage/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def load_registry_config(key_path, schema):
134134

135135
try:
136136
from _native import package_get_root
137-
root = package_get_root()
137+
root = Path(package_get_root())
138138
except ImportError:
139139
root = Path(sys.executable).parent
140140
resolve_config(cfg, key_path, root, schema=schema, error_unknown=True)

0 commit comments

Comments
 (0)