Skip to content

Commit d8ae94b

Browse files
committed
Honor charm channel in bundles
Fixes #496
1 parent eebf2b3 commit d8ae94b

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
@@ -436,7 +436,7 @@ async def run(self, context):
436436

437437
entity_id = await context.charmstore.entityId(self.charm)
438438
log.debug('Adding %s', entity_id)
439-
await context.client_facade.AddCharm(channel=None, url=entity_id, force=False)
439+
await context.client_facade.AddCharm(channel=self.channel, url=entity_id, force=False)
440440
return entity_id
441441

442442
def __str__(self):

0 commit comments

Comments
 (0)