From cdc44f2f4bb08fbf2c7b5a527402960a5400fea8 Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Wed, 2 May 2018 12:18:43 -0400 Subject: [PATCH] Add missing trailing slash to generated URL for sitemap. --- pgweb/core/struct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgweb/core/struct.py b/pgweb/core/struct.py index b04d8b82..e3c697b3 100644 --- a/pgweb/core/struct.py +++ b/pgweb/core/struct.py @@ -3,7 +3,7 @@ import os def get_struct(): yield ('', None) yield ('community/', None) - yield ('support/versioning', None) + yield ('support/versioning/', None) # Enumerate all the templates that will generate pages pages_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../templates/pages/')) -- 2.39.5