diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-09-10 15:36:57 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-09-10 15:36:57 +0900 |
commit | 9feebd01d183c0a36100760b4f5bb74a98654c63 (patch) | |
tree | 5b859c4bd03f65c9105d320916dd8255d81b775c /sphinx/environment.py | |
parent | 1d7c82b3bb4127ab48c96c41321608ccfb0241ef (diff) | |
download | sphinx-git-9feebd01d183c0a36100760b4f5bb74a98654c63.tar.gz |
Use new style python classes
Diffstat (limited to 'sphinx/environment.py')
-rw-r--r-- | sphinx/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/environment.py b/sphinx/environment.py index 7947838f4..61df10237 100644 --- a/sphinx/environment.py +++ b/sphinx/environment.py @@ -92,7 +92,7 @@ class NoUri(Exception): pass -class BuildEnvironment: +class BuildEnvironment(object): """ The environment in which the ReST files are translated. Stores an inventory of cross-file targets and provides doctree |