Переглянути джерело

Fallback case in _get_tree() for the obvious ones.

tags/v0.1
Ben Kurtovic 12 роки тому
джерело
коміт
d3a1ce0814
1 змінених файлів з 1 додано та 3 видалено
  1. +1
    -3
      mwparserfromhell/wikicode.py

+ 1
- 3
mwparserfromhell/wikicode.py Переглянути файл

@@ -125,10 +125,8 @@ class Wikicode(StringMixIn):
lines.append(marker) # Continue from this line
self._get_tree(param.value, lines, marker, indent + 1)
write("}}")
elif isinstance(node, Text):
write(unicode(node))
else:
raise NotImplementedError(node)
write(unicode(node))
return lines

@property


Завантаження…
Відмінити
Зберегти