Skip to content

Commit b69a8c7

Browse files
committed
ci: fix bundle building
1 parent 439b7d0 commit b69a8c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutor.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- mode: python -*-
22
import importlib
33
import os
4-
from importlib_metadata
4+
import importlib_metadata
55

66
block_cipher = None
77

@@ -19,7 +19,7 @@ for entrypoint_version in ["tutor.plugin.v0", "tutor.plugin.v1"]:
1919
continue
2020
plugin_root = os.path.dirname(plugin.__file__)
2121
plugin_root_module_name = os.path.basename(plugin_root)
22-
hidden_imports.append(entrypoint.module_name)
22+
hidden_imports.append(entrypoint.module)
2323
for folder in ["patches", "templates"]:
2424
path = os.path.join(plugin_root, folder)
2525
if os.path.exists(path):

0 commit comments

Comments
 (0)