aboutsummaryrefslogtreecommitdiffstats
path: root/tools/html2text.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/html2text.py')
-rwxr-xr-xtools/html2text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/html2text.py b/tools/html2text.py
index a8e6bffde5..b98b3dea38 100755
--- a/tools/html2text.py
+++ b/tools/html2text.py
@@ -224,7 +224,7 @@ def main():
if hasattr(f, 'buffer'):
# Access raw (byte) buffer in Python 3 instead of decoded one
f = f.buffer
- # Read stdin as as Unicode string
+ # Read stdin as a Unicode string
htmlparser.feed(f.read().decode('utf-8'))
finally:
if filename is not None: