Skip to content

Commit 06bb19f

Browse files
committed
fixed #15
1 parent b521b2d commit 06bb19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎markdownextradata/plugin.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def on_pre_build(self, config):
7979
(
8080
yaml.load(filename.read_bytes(), Loader=yaml.FullLoader)
8181
if filename.suffix in [".yml", ".yaml"]
82-
else json.load(filename.read_bytes())
82+
else json.loads(filename.read_bytes())
8383
),
8484
)
8585

0 commit comments

Comments
 (0)