From f0e74a73cc8fda054c3e29d3f307781fc8158595 Mon Sep 17 00:00:00 2001 From: "Antoine Vandevenne (anv)" Date: Thu, 9 Sep 2021 17:22:27 +0200 Subject: [PATCH] [IMP] conf: hide saas branches from the version switcher X-original-commit: 7f5b948f0b5b12941449d63b30dd7a9a9cb6a3a1 --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 1b2ce37154..d143418a79 100644 --- a/conf.py +++ b/conf.py @@ -290,7 +290,7 @@ def _versionize(): for _alternate_version in sorted(_alternate_versions, reverse=True) if _alternate_version != version and ( _alternate_version != 'master' or pagename.startswith('developer') - ) + ) and not _alternate_version.startswith('saas') ] def _localize():