Fix FTBFS in extlinks

This commit is contained in:
liwenjun@kylinos.cn 2024-10-15 17:35:13 +08:00
parent 15e292155a
commit 3d6579ba6f
2 changed files with 10 additions and 4 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
libsass-python (0.22.0-ok2) nile; urgency=medium
* Fix FTBFS in extlinks.
-- liwenjun <liwenjun@kylinos.cn> Tue, 15 Oct 2024 17:33:58 +0800
libsass-python (0.22.0-ok1) nile; urgency=medium
* Build for openKylin.

View File

@ -271,11 +271,11 @@ intersphinx_mapping = {
extlinks = {
'issue': ('https://github.com/sass/libsass-python/issues/%s', '#'),
'issue': ('https://github.com/sass/libsass-python/issues/%s', '%s'),
'branch': (
'https://github.com/sass/libsass-python/compare/main...%s',
'',
'%s',
),
'commit': ('https://github.com/sass/libsass-python/commit/%s', ''),
'upcommit': ('https://github.com/sass/libsass/commit/%s', ''),
'commit': ('https://github.com/sass/libsass-python/commit/%s', '%s'),
'upcommit': ('https://github.com/sass/libsass/commit/%s', '%s'),
}