Skip to content

Commit

Permalink
Merge pull request martyzz1#86 from tfranchi/patch-1
Browse files Browse the repository at this point in the history
Upload dyno.py, use dyno name instead id
  • Loading branch information
martyzz1 authored Nov 4, 2019
2 parents bd3e24a + 37a1251 commit 4f64424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heroku3/models/dyno.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __repr__(self):
def kill(self):
r = self._h._http_resource(
method='DELETE',
resource=('apps', self.app.id, 'dynos', self.id)
resource=('apps', self.app.id, 'dynos', self.name)
)

r.raise_for_status()
Expand Down

0 comments on commit 4f64424

Please sign in to comment.