Fix parsing html_unescape.py in py3k test.

This file was using print as a function but didn't import
print_function; as a result futurize threw an error every time it
parsed this file.
This commit is contained in:
Tim Abbott
2015-12-27 14:32:43 -08:00
parent 24ebc10ec8
commit 408ff14be8

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env python2.7 #!/usr/bin/env python2.7
from __future__ import print_function
# Remove HTML entity escaping left over from MediaWiki->rST conversion. # Remove HTML entity escaping left over from MediaWiki->rST conversion.