Skip to content

Commit

Permalink
0.0.18a4
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Feb 6, 2024
1 parent 3fac6ac commit d0fe558
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dosei/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run(func):
try:
app: Dosei = import_from_string("dosei_config:dosei")
except ImportFromStringError:
raise click.ClickException(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
raise click.ClickException(f"Couldn't find a dosei_config.py file in \"{os.getcwd()}\"")
if app.dev is None:
raise click.ClickException('Command "run" not found.')
subprocess.check_call(app.command)
Expand All @@ -35,7 +35,7 @@ def dev():
try:
app: Dosei = import_from_string("dosei_config:dosei")
except ImportFromStringError:
raise click.ClickException(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
raise click.ClickException(f"Couldn't find a dosei_config.py file in \"{os.getcwd()}\"")
if app.dev is None:
raise click.ClickException('Command "dev" not found.')
subprocess.check_call(app.dev)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dosei"
version = "0.0.18a3"
version = "0.0.18a4"
description = "Dosei Python SDK"
authors = ["Alvaro Molina <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit d0fe558

Please sign in to comment.