doc/user: fix sphinx warning
authorPeter Hutterer <peter.hutterer@who-t.net>
Tue, 17 Jan 2023 02:28:58 +0000 (12:28 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Tue, 17 Jan 2023 02:29:25 +0000 (12:29 +1000)
WARNING: extlinks: Sphinx-6.0 will require a caption string to contain
exactly one '%s' and all other '%' need to be escaped as '%%'.

Well, let's do that then!

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
doc/user/conf.py.in

index 6967a9b6d5b3be4df9eb97bc55f529ffda0038ce..f827ffef4ab819578704855a4fb49b43e8c8ea2e 100644 (file)
@@ -169,7 +169,7 @@ from recommonmark.parser import CommonMarkParser
 
 extlinks = { 'commit' :
                ('https://gitlab.freedesktop.org/libinput/libinput/commit/%s',
-                       'git commit ')
+                       'git commit %s')
 }
 
 # -- git version hack -------------------------------------------------