We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7352368 commit 7a1111bCopy full SHA for 7a1111b
1 file changed
juju/bundle.py
@@ -1022,7 +1022,7 @@ async def run(self, context):
1022
def __str__(self):
1023
endpoints = ""
1024
if self.endpoints is not None:
1025
- endpoints = ":{}".format(self.endpoints.join(","))
+ endpoints = ":{}".format(",".join(self.endpoints))
1026
return "create offer {offer_name} using {application}{endpoints}".format(offer_name=self.offer_name,
1027
application=self.application,
1028
endpoints=endpoints)
0 commit comments