patched!
This commit is contained in:
parent
5c09ff6967
commit
2d06a1fc4a
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ def define(inp):
|
||||||
for article in sections:
|
for article in sections:
|
||||||
result += article[0]
|
result += article[0]
|
||||||
if len(article) > 2:
|
if len(article) > 2:
|
||||||
result += ' '.join('{}. {}'.format(n + 1, section)
|
result += u' '.join(u'{}. {}'.format(n + 1, section)
|
||||||
for n, section in enumerate(article[1:]))
|
for n, section in enumerate(article[1:]))
|
||||||
else:
|
else:
|
||||||
result += article[1] + ' '
|
result += article[1] + ' '
|
||||||
|
|
Reference in a new issue