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/addnodes.py | |
| parent | 1d7c82b3bb4127ab48c96c41321608ccfb0241ef (diff) | |
| download | sphinx-git-9feebd01d183c0a36100760b4f5bb74a98654c63.tar.gz | |
Use new style python classes
Diffstat (limited to 'sphinx/addnodes.py')
| -rw-r--r-- | sphinx/addnodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index c5ce4e296..124c9b6e4 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -14,7 +14,7 @@ import warnings from docutils import nodes -class translatable: +class translatable(object): """Node which supports translation. The translation goes forward with following steps: |
