mirror of https://github.com/zulip/zulip.git
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:
parent
24ebc10ec8
commit
408ff14be8
|
@ -1,4 +1,5 @@
|
|||
#!/usr/bin/env python2.7
|
||||
from __future__ import print_function
|
||||
|
||||
# Remove HTML entity escaping left over from MediaWiki->rST conversion.
|
||||
|
||||
|
|
Loading…
Reference in New Issue