This commit is contained in:
jeffy-g
2017-04-03 01:50:26 +09:00
parent c560d17bdd
commit 4d8c3eadbc
4 changed files with 9 additions and 16 deletions

View File

@@ -25,10 +25,10 @@ def sequential_rep(text_, *args):
return text_
def replaceLTGT(text_):
"""if fit name contained "<" or ">" then reprace to named html entity by EVE client.
for fit name.
"""
return text_.replace("&lt;", "<").replace("&gt;", ">") if isinstance(text_, unicode) else text_