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
Bugfix for Python 2.6.
tags/v0.2
Ben Kurtovic
12 years ago
parent
03120bc97e
commit
bca09e1687
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mwparserfromhell/compat.py
+ 1
- 1
mwparserfromhell/compat.py
View File
@@ -10,7 +10,7 @@ types are meant to be imported directly from within the parser's modules.
import sys
import sys
py3k = sys.version_info
.major
== 3
py3k = sys.version_info
[0]
== 3
if py3k:
if py3k:
bytes = bytes
bytes = bytes
Write
Preview
Loading…
Cancel
Save