mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
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.
11 lines
223 B
Python
Executable File
11 lines
223 B
Python
Executable File
#!/usr/bin/env python2.7
|
|
from __future__ import print_function
|
|
|
|
# Remove HTML entity escaping left over from MediaWiki->rST conversion.
|
|
|
|
import html
|
|
import sys
|
|
|
|
for line in sys.stdin:
|
|
print(html.unescape(line), end='')
|