Skip to content
This repository has been archived by the owner on Mar 2, 2021. It is now read-only.

Commit

Permalink
Fix filter of Deployment.instances attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia authored and Crosspop committed Mar 19, 2013
1 parent 36c5487 commit 61c6c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asuka/deploy.py
Expand Up @@ -64,7 +64,7 @@ def __init__(self, branch, commit, live=False):
self.commit = commit
self.live = bool(live)
instances = self.app.instances
self.instances = instances.tagged('Branch', branch.name) \
self.instances = instances.tagged('Branch', branch.label) \
.tagged('Commit', commit.ref) \
.tagged('Live', 'live' if self.live else '')

Expand Down

0 comments on commit 61c6c1a

Please sign in to comment.