Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jul 1, 2023
1 parent a0309c3 commit 3bc297b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
=========

Version 0.3.7
=============

- Fix issue.

Version 0.3.6
=============

- Fix issue.

Version 0.3.5
=============

Expand Down
4 changes: 2 additions & 2 deletions src/flook/command/recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def get(self, name, output):
recipe = self.database.get_recipe(name)

if recipe is None:
raise click.ClickException(f"Recipe with name {recipe.name} not found")
raise click.ClickException(f"Recipe with name {name} not found")

data = [
{
Expand Down Expand Up @@ -154,7 +154,7 @@ def run(self, name, host_name, tag):
recipe = self.database.get_recipe(name)

if recipe is None:
raise click.ClickException(f"Recipe with name {recipe.name} not found")
raise click.ClickException(f"Recipe with name {name} not found")

if host_name != "":
host = self.database.get_host(host_name)
Expand Down

0 comments on commit 3bc297b

Please sign in to comment.