osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-dev/+/39401?usp=email )
Change subject: gen_makefile: fix f-string without placeholders
......................................................................
gen_makefile: fix f-string without placeholders
gen_makefile.py:604:17: F541 [*] f-string without any placeholders
Change-Id: I77b38247fb38136f77f89d40669b2df378dca192
---
M gen_makefile.py
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-dev refs/changes/01/39401/1
diff --git a/gen_makefile.py b/gen_makefile.py
index 18af686..7d73df8 100755
--- a/gen_makefile.py
+++ b/gen_makefile.py
@@ -601,7 +601,7 @@
ldconfig_without_sudo=' \\\n\t\t--ldconfig-without-sudo' if
args.ldconfig_without_sudo else '',
make_check='' if args.make_check else " \\\n\t\t--no-make-check",
docker_cmd=f' \\\n\t\t--docker-cmd "{args.docker_cmd}"' if
args.docker_cmd else '',
- build_debug=f' \\\n\t\t--build-debug' if args.build_debug else '',
+ build_debug=' \\\n\t\t--build-debug' if args.build_debug else '',
auto_distclean=' \\\n\t\t--auto-distclean' if args.auto_distclean else
'',
)
--
To view, visit
https://gerrit.osmocom.org/c/osmo-dev/+/39401?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-dev
Gerrit-Branch: master
Gerrit-Change-Id: I77b38247fb38136f77f89d40669b2df378dca192
Gerrit-Change-Number: 39401
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>