From 932042b62c98cf380447755ba84fba49a045a559 Mon Sep 17 00:00:00 2001 From: apaz Date: Thu, 9 Oct 2025 23:48:03 -0500 Subject: [PATCH] Swap inside fstring to double quote (#442) --- hyfetch/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyfetch/main.py b/hyfetch/main.py index c72d1167..0df0a1a0 100755 --- a/hyfetch/main.py +++ b/hyfetch/main.py @@ -503,7 +503,7 @@ def run(): print(f'Error: invalid hex color "{color}"') preset = ColorProfile(colors) else: - print(f'Preset should be a comma-separated list of hex colors, or one of the following: {', '.join(sorted(PRESETS.keys()))}') + print(f'Preset should be a comma-separated list of hex colors, or one of the following: {", ".join(sorted(PRESETS.keys()))}') if preset is None: exit(1)