diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-12 13:03:53 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-12 13:03:53 +0900 |
commit | 38d6c34f35c60689f22d1f71ce650ca1e3005ec4 (patch) | |
tree | 0677416d0de03a53ee7d348289d8560e511c2bed /sphinx/domains/cpp.py | |
parent | ef912eb9a3e923e80d5c6a08fda4597a65d591aa (diff) | |
parent | 478306e052d9711170b1fbe63635edef02853484 (diff) | |
download | sphinx-git-38d6c34f35c60689f22d1f71ce650ca1e3005ec4.tar.gz |
Merge branch 'stable'
Diffstat (limited to 'sphinx/domains/cpp.py')
-rw-r--r-- | sphinx/domains/cpp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index cfdbc99d9..181ed3f78 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -3198,14 +3198,14 @@ class Symbol(object): def to_string(self, indent): # type: (int) -> unicode - res = ['\t'*indent] # type: List[unicode] + res = ['\t' * indent] # type: List[unicode] if not self.parent: res.append('::') else: if self.templateParams: res.append(text_type(self.templateParams)) res.append('\n') - res.append('\t'*indent) + res.append('\t' * indent) if self.identifier: res.append(text_type(self.identifier)) else: |