Skip to content

Commit cb2af5d

Browse files
committed
Use a better qualified name for both raw types and functions
1 parent f16ed40 commit cb2af5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/api/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def start():
463463
["{0}={0}".format(i[0]) for i in sorted_args if i != ("flags", "#")]
464464
),
465465
slots=", ".join(['"{}"'.format(i[0]) for i in sorted_args if i != ("flags", "#")]),
466-
qualname="{}{}".format("{}.".format(c.namespace) if c.namespace else "", c.name)
466+
qualname="{}.{}{}".format(c.section, "{}.".format(c.namespace) if c.namespace else "", c.name)
467467
)
468468
)
469469

0 commit comments

Comments
 (0)