From 855e61271bb357b5ccd8beb5541be45ecf62a74f Mon Sep 17 00:00:00 2001 From: Patrick Monnerat Date: Sat, 19 Jan 2019 01:26:26 +0100 Subject: Make Python statements compatible with version 2 and 3. --- docs/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/Makefile.am') diff --git a/docs/Makefile.am b/docs/Makefile.am index 47e8ab0..70021bc 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -86,7 +86,7 @@ BUILT_SOURCES = \ $(HTML_FILES) reference/builddate.xml: $(REFERENCE_DEPS) - $(PYTHON) -c 'import datetime; print datetime.date.today()' > $@ + $(PYTHON) -c 'import datetime; print (datetime.date.today())' > $@ $(HTML_FILES): $(REFERENCE_DEPS) xsltproc --nonet --xinclude -o $(BUILDDIR)/html/ \ -- cgit v1.2.1