From ee26b90e9ba3afe5ba0fa3c61eaa07002abe5ed4 Mon Sep 17 00:00:00 2001 From: Christos Date: Fri, 8 Nov 2024 16:20:26 +0100 Subject: [PATCH] fixed typo2 --- src/viur_cli/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viur_cli/setup.py b/src/viur_cli/setup.py index 48f211c..4e43e98 100644 --- a/src/viur_cli/setup.py +++ b/src/viur_cli/setup.py @@ -51,8 +51,8 @@ def clean_base(app_id, author=None): echo_info(subprocess.check_output("git branch -D main", shell=True).decode().rstrip("\n")) subprocess.check_output("git branch -m main", shell=True) - echo_info(f"Current branch is: " - f"{subprocess.check_output('git branch --show-current', shell=True).decode().rstrip('\n')}") + branch_current = subprocess.check_output('git branch --show-current', shell=True).decode().rstrip('\n') + echo_info(f"Current branch is: {branch_current}") echo_info("---") echo_info("Generating project documentation...")