From a3c55462a80891b2c28f6e726f00095de6a99a70 Mon Sep 17 00:00:00 2001 From: Anagh Kumar Baranwal Date: Sun, 21 Oct 2018 15:22:51 +0530 Subject: [PATCH] Set python version explicitly to `2` to avoid issues on systems where the default python version is `3` Signed-off-by: Anagh Kumar Baranwal --- bin/make_backend_docs.py | 2 +- bin/make_manual.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/make_backend_docs.py b/bin/make_backend_docs.py index 83db62366..046433050 100755 --- a/bin/make_backend_docs.py +++ b/bin/make_backend_docs.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 """ Make backend documentation """ diff --git a/bin/make_manual.py b/bin/make_manual.py index 8a905ea9d..1ef8ead70 100755 --- a/bin/make_manual.py +++ b/bin/make_manual.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 """ Make single page versions of the documentation for release and conversion into man pages etc.