Commit 6b2200fc authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Remove u-prefixes.

parent c824d15a
...@@ -94,7 +94,7 @@ def process_story(raw_story): ...@@ -94,7 +94,7 @@ def process_story(raw_story):
def _add_missing_period(line): def _add_missing_period(line):
END_TOKENS = [".", "!", "?", "...", "'", "`", '"', u"\u2019", u"\u2019", ")"] END_TOKENS = [".", "!", "?", "...", "'", "`", '"', "\u2019", "\u2019", ")"]
if line.startswith("@highlight"): if line.startswith("@highlight"):
return line return line
if line[-1] in END_TOKENS: if line[-1] in END_TOKENS:
......
...@@ -34,8 +34,8 @@ class ANSI: ...@@ -34,8 +34,8 @@ class ANSI:
Helper for en.wikipedia.org/wiki/ANSI_escape_code Helper for en.wikipedia.org/wiki/ANSI_escape_code
""" """
_bold = u"\u001b[1m" _bold = "\u001b[1m"
_reset = u"\u001b[0m" _reset = "\u001b[0m"
@classmethod @classmethod
def bold(cls, s): def bold(cls, s):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment