diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-07-19 23:25:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 23:25:48 +0800 |
commit | acbd6bad9ded9a1d59e80e71d334d64b0244f5cd (patch) | |
tree | c7e162bb6962be9f33b9f7edb84da1b7511fe0d7 /doc/source/conf.py | |
parent | 06c219929a427737b43c5dfd5359019f2c110d41 (diff) | |
parent | f587b21a98e7c26986db87d991af42cafcfebb07 (diff) | |
download | gitpython-acbd6bad9ded9a1d59e80e71d334d64b0244f5cd.tar.gz |
Merge pull request #1294 from gitpython-developers/tidy-tools
Tidy tools
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 0ec64179..286058fd 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -14,7 +14,8 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import sys +import os # If your extensions are in another directory, add it here. If the directory # is relative to the documentation root, use os.path.abspath to make it @@ -50,7 +51,7 @@ copyright = 'Copyright (C) 2008, 2009 Michael Trier and contributors, 2010-2015 # built documents. # # The short X.Y version. -with open(os.path.join(os.path.dirname(__file__),"..", "..", 'VERSION')) as fd: +with open(os.path.join(os.path.dirname(__file__), "..", "..", 'VERSION')) as fd: VERSION = fd.readline().strip() version = VERSION # The full version, including alpha/beta/rc tags. @@ -170,8 +171,8 @@ htmlhelp_basename = 'gitpythondoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, document class [howto/manual]). latex_documents = [ - ('index', 'GitPython.tex', ur'GitPython Documentation', - ur'Michael Trier', 'manual'), + ('index', 'GitPython.tex', r'GitPython Documentation', + r'Michael Trier', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of |