This website works better with JavaScript.
Home
Help
Sign In
ben
/
mwparserfromhell
mirror of
https://github.com/earwig/mwparserfromhell
Watch
1
Star
1
Fork
0
Code
Releases
24
Activity
Browse Source
A couple very minor nitpicks.
tags/v0.3
Ben Kurtovic
11 years ago
parent
fdb2762393
commit
bdfd0632b3
2 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mwparserfromhell/nodes/tag.py
+1
-0
mwparserfromhell/parser/tokenizer.py
+ 1
- 1
mwparserfromhell/nodes/tag.py
View File
@@ -22,7 +22,7 @@
from __future__ import unicode_literals
from . import Node
, Text
from . import Node
from .extras import Attribute
from ..compat import str
from ..definitions import is_visible
+ 1
- 0
mwparserfromhell/parser/tokenizer.py
View File
@@ -35,6 +35,7 @@ class BadRoute(Exception):
"""Raised internally when the current tokenization route is invalid."""
def __init__(self, context=0):
super(BadRoute, self).__init__()
self.context = context
Write
Preview
Loading…
Cancel
Save