summaryrefslogtreecommitdiff
path: root/creole/parser/creol2html_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'creole/parser/creol2html_parser.py')
-rw-r--r--creole/parser/creol2html_parser.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/creole/parser/creol2html_parser.py b/creole/parser/creol2html_parser.py
index 3cb0c19..dd31a44 100644
--- a/creole/parser/creol2html_parser.py
+++ b/creole/parser/creol2html_parser.py
@@ -22,7 +22,13 @@
import re
from pprint import pformat
-from creole.parser.creol2html_rules import INLINE_FLAGS, INLINE_RULES, BlockRules, InlineRules, SpecialRules
+from creole.parser.creol2html_rules import (
+ INLINE_FLAGS,
+ INLINE_RULES,
+ BlockRules,
+ InlineRules,
+ SpecialRules,
+)
from creole.shared.document_tree import DocNode
@@ -87,7 +93,7 @@ class CreoleParser:
if self.cur.children:
last_child = self.cur.children[-1]
if last_child.kind == "break":
- del(self.cur.children[-1])
+ del self.cur.children[-1]
def _upto(self, node, kinds):
"""