Skip to content

Commit 7a1111b

Browse files
committed
Attempt a fix
1 parent 7352368 commit 7a1111b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

juju/bundle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ async def run(self, context):
10221022
def __str__(self):
10231023
endpoints = ""
10241024
if self.endpoints is not None:
1025-
endpoints = ":{}".format(self.endpoints.join(","))
1025+
endpoints = ":{}".format(",".join(self.endpoints))
10261026
return "create offer {offer_name} using {application}{endpoints}".format(offer_name=self.offer_name,
10271027
application=self.application,
10281028
endpoints=endpoints)

0 commit comments

Comments
 (0)