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
|
@ -39,7 +39,7 @@ def ficsum(ficcount,year,month=0,showfandom=True,local=False):
|
|||
if "OW" not in origfile.fandom:
|
||||
if "gen" not in origfile.genre:
|
||||
try:
|
||||
thechars = origfile.ship[0]
|
||||
thechars = origfile.ship[0].replace("/"," × ")
|
||||
except:
|
||||
chars = []
|
||||
try:
|
||||
|
@ -74,7 +74,7 @@ def ficsum(ficcount,year,month=0,showfandom=True,local=False):
|
|||
if "OW" not in fileread.fandom:
|
||||
if "gen" not in fileread.genre:
|
||||
try:
|
||||
thechars = fileread.ship[0]
|
||||
thechars = fileread.ship[0].replace("/"," × ")
|
||||
except:
|
||||
chars = []
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue