From 1adfa7bafd0b55c3c86a995c8c462f486815edc9 Mon Sep 17 00:00:00 2001 From: Christos Date: Fri, 8 Nov 2024 16:07:40 +0100 Subject: [PATCH] fixed line break --- 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 44d23f2..48f211c 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: {subprocess.check_output( - 'git branch --show-current', shell=True).decode().rstrip('\n')}") + echo_info(f"Current branch is: " + f"{subprocess.check_output('git branch --show-current', shell=True).decode().rstrip('\n')}") echo_info("---") echo_info("Generating project documentation...")