From 7e9ae9c39c2cb1e1deb691277c8aa28f9e59c93b Mon Sep 17 00:00:00 2001 From: Antonio Augusto Alves Junior <aalvesju@gmail.com> Date: Tue, 8 Jun 2021 16:50:00 +0200 Subject: [PATCH] Update documentation/conf.py --- documentation/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/conf.py b/documentation/conf.py index 82389f513..53c64cfe5 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -14,7 +14,7 @@ def configureDoxyfile(template_file, output_file, input_dir, output_dir): read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' - +s = '' if read_the_docs_build: configureDoxyfile("Doxyfile.in", "Doxyfile", "../", "_build/workdir/doxygen") s = subprocess.check_output(['git', 'rev-parse' , '--abbrev-ref' , 'HEAD']) @@ -29,7 +29,7 @@ if read_the_docs_build: project = u'CORSIKA8' copyright = u'2021, CORSIKA 8 Collaboration' -author = u'CORSIKA 8 Collaboration' +author = s.decode()#u'CORSIKA 8 Collaboration' # The short X.Y version version = u'0.0.0' -- GitLab