Skip to content

Commit c8409f4

Browse files
author
Danny Milosavljevic
committed
phase3: Improve "no instances at all" error message.
1 parent 740e000 commit c8409f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phase3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ def traverse1(tree, path):
688688
if selected_access_method in vv.instances and vv.bits:
689689
process_TableDefinition(peripheral_path, kk, vv)
690690
elif len(vv.instances) == 0:
691-
warning("Register {} has no instances at all. It thus cannot be accessed by the user.".format(path + [k, kk]))
691+
warning("Register {} has no instances at all. It thus cannot be accessed by the user.".format("::".join(path + [k, kk])))
692692

693693
finish_TableDefinition(peripheral_path)
694694
else:

0 commit comments

Comments
 (0)