From d13d155cc6385b89164706170ddeb8950e032df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 6 Jan 2025 15:22:25 +0100 Subject: [PATCH] Avoid "unsupported format character ')'" on Python 3.14 Escape the literal % in argument help. --- pixelsnap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixelsnap.py b/pixelsnap.py index dcedb40f..649b33bd 100755 --- a/pixelsnap.py +++ b/pixelsnap.py @@ -132,7 +132,7 @@ class PixelSnap(inkex.EffectExtension): "--max_gradient", type=float, default=0.5, - help="Maximum slope to consider straight (%)", + help="Maximum slope to consider straight (%%)", ) pars.add_argument( "-s", -- GitLab