Replace slashes with × in ship names like any good old-school weeb
This commit is contained in:
parent
6c8aa53383
commit
afb4f2cbe4
3 changed files with 5 additions and 5 deletions
4
feed.py
4
feed.py
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue