Skip to content

Commit

Permalink
Fix debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
fbjorn committed Jun 28, 2023
1 parent 63264d1 commit fe22321
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = "multi-start"
version = "0.0.1"
version = "0.0.2"
description = "Run multiple services inside a docker container"
license = "BSD-3-Clause"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def debug_msg(msg: str) -> None:
:param msg: Message to print
"""
if os.environ.get("DEBUG"):
print(str)
print(msg)


async def run_and_wait(cmd, cwd=None):
Expand Down

0 comments on commit fe22321

Please sign in to comment.