diff --git a/documentation/conf.py b/documentation/conf.py index 9f66e3ed5bb257fd0e31ba5f4db5fe56cda2310f..f7318c54fe003cc30a45e49e9e37e9ec192d2d2f 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -17,7 +17,7 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' if read_the_docs_build: configureDoxyfile("Doxyfile.in", "Doxyfile", "../", "_build/workdir/doxygen") - s = subprocess.check_output(["git", "branch –show-current "]) + s = subprocess.check_output(["git", "branch --show-current"]) print("s = " + s) subprocess.call('mkdir -p _build/workdir/doxygen; doxygen Doxyfile', shell=True) html_extra_path = ['_build/workdir/']