From: Peter Hutterer Date: Tue, 17 Jan 2023 02:28:58 +0000 (+1000) Subject: doc/user: fix sphinx warning X-Git-Tag: 1.23.0~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf2e8a406e6ebfdb62ffa67f00822c17ff9b2c6a;p=platform%2Fupstream%2Flibinput.git doc/user: fix sphinx warning 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 --- diff --git a/doc/user/conf.py.in b/doc/user/conf.py.in index 6967a9b6..f827ffef 100644 --- a/doc/user/conf.py.in +++ b/doc/user/conf.py.in @@ -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 -------------------------------------------------