From 11884637344c88f50678623662118bf5583aa25b Mon Sep 17 00:00:00 2001 From: Mohammed Tayeh Date: Thu, 30 Jun 2022 17:24:40 +0300 Subject: [PATCH] fix Typo podman-composer in version command Signed-off-by: Mohammed Tayeh --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- podman_compose.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b21299f..f5e937b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -35,7 +35,7 @@ What is the behavior you actually got and that should not happen. ``` $ podman-compose version using podman version: 3.4.0 -podman-composer version 0.1.7dev +podman-compose version 0.1.7dev podman --version podman version 3.4.0 diff --git a/podman_compose.py b/podman_compose.py index baf96fe..0fcec6c 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -1737,7 +1737,7 @@ def compose_version(compose, args): res = {"version": __version__} print(json.dumps(res)) return - print("podman-composer version", __version__) + print("podman-compose version", __version__) compose.podman.run(["--version"], "", [], sleep=0)