Replace slashes with × in ship names like any good old-school weeb

This commit is contained in:
mez 2024-03-29 11:56:20 +00:00
parent 6c8aa53383
commit afb4f2cbe4
3 changed files with 5 additions and 5 deletions

View file

@ -97,7 +97,7 @@ def feedgen(local=False):
except:
filewrite.write("/".join(origread.fandom))
try:
filewrite.write(", " + origread.ship[0])
filewrite.write(", " + origread.ship[0].replace("/"," × "))
except:
try:
filewrite.write(", " + ", ".join(origread.charpov))
@ -131,7 +131,7 @@ def feedgen(local=False):
except:
filewrite.write("/".join(thefile.fandom))
try:
filewrite.write(", " + thefile.ship[0])
filewrite.write(", " + thefile.ship[0].replace("/"," × "))
except:
try:
filewrite.write(", " + ", ".join(thefile.charpov))