From f5a28af0fdc90ae1e9a1471709bde8dd3085fc33 Mon Sep 17 00:00:00 2001 From: Greg Dubicki Date: Sat, 27 Feb 2021 14:20:29 +0100 Subject: [PATCH] Fix generating docs in readthedocs as we (they?) are still using Python 2 there --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index b20fe206..311a0864 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ master_doc = "index" project = "pypuppetdb" -copyright = f"2013-{datetime.now().year}, Vox Pupuli" +copyright = "2013-%s, Vox Pupuli" % datetime.now().year version = pkg_resources.get_distribution(project).version release = version