3 lines
81 B
Python
3 lines
81 B
Python
def sanitize_title (title):
|
|
return title.replace("/", "-").replace(":", "-")
|