[elbe-devel] [PATCH 02/75] bootup-check: use f-strings
Daniel Braunwarth
daniel at braunwarth.dev
Wed Nov 2 20:01:12 CET 2022
Signed-off-by: Daniel Braunwarth <daniel at braunwarth.dev>
---
elbepack/commands/bootup-check.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/elbepack/commands/bootup-check.py b/elbepack/commands/bootup-check.py
index 8549e251d..8dc568669 100644
--- a/elbepack/commands/bootup-check.py
+++ b/elbepack/commands/bootup-check.py
@@ -20,7 +20,7 @@ def is_installed(ip, cache):
try:
p = cache[ip.et.text]
except KeyError:
- print("%s is not in local apt" % ip.et.text)
+ print(f"{ip.et.text} is not in local apt")
return False
if p.current_state == apt_pkg.CURSTATE_INSTALLED:
return True
@@ -38,11 +38,11 @@ def bootup_check(xml):
for p in hl_cache:
if p.is_installed:
if not is_in_fpl(p, fpl):
- print("%s installed by user" % p.name)
+ print(f"{p.name} installed by user")
for ip in fpl:
if not is_installed(ip, cache):
- print("%s removed by user" % ip.et.text)
+ print(f"{ip.et.text} removed by user")
def bootup_info():
--
2.38.1
More information about the elbe-devel
mailing list