mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-23 08:47:47 +02:00
Refactor: More f-string
This commit is contained in:
@@ -19,7 +19,7 @@ def run(*args):
|
||||
try:
|
||||
subprocess.check_call(args)
|
||||
except OSError:
|
||||
raise SystemExit('You are missing the {} program needed to generate the kitty logo'.format(args[0]))
|
||||
raise SystemExit(f'You are missing the {args[0]} program needed to generate the kitty logo')
|
||||
|
||||
|
||||
def render(output, sz=256, src=unframed_src):
|
||||
|
||||
Reference in New Issue
Block a user