Skip to content

Commit

Permalink
Corrected format string in context.py.get_fq_identity(). (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidraker authored Oct 24, 2022
1 parent fbfe087 commit 4faf4f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/volttron/utils/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_fq_identity(cls, identity, platform_instance_name=None):
"""
if not platform_instance_name:
platform_instance_name = cls.get_config_param("instance-name")
return "{platform_instance_name}.{identity}"
return f"{platform_instance_name}.{identity}"

@classmethod
def get_messagebus(cls):
Expand Down

0 comments on commit 4faf4f2

Please sign in to comment.