From: Anuj Deshpande Date: Tue, 26 Dec 2017 10:31:18 +0000 (+0530) Subject: docs: Add build support for python3 X-Git-Tag: v3.1-beta1~508^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59b0c50d77976684aaaf42084b8078de77d1ead7;p=esp-idf docs: Add build support for python3 --- diff --git a/docs/link-roles.py b/docs/link-roles.py index e774721922..a7d549e827 100644 --- a/docs/link-roles.py +++ b/docs/link-roles.py @@ -6,9 +6,9 @@ from repo_util import run_cmd_get_output def get_github_rev(): path = run_cmd_get_output('git rev-parse --short HEAD') tag = run_cmd_get_output('git describe --exact-match') - print 'Git commit ID: ', path + print ('Git commit ID: ', path) if len(tag): - print 'Git tag: ', tag + print ('Git tag: ', tag) path = tag return path