osmith submitted this change.

View Change

Approvals: pespin: Looks good to me, but someone else must approve osmith: Looks good to me, approved; Verified laforge: Looks good to me, but someone else must approve
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(-)

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 change 39401. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: osmo-dev
Gerrit-Branch: master
Gerrit-Change-Id: I77b38247fb38136f77f89d40669b2df378dca192
Gerrit-Change-Number: 39401
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>