split the sanitize_title into a util module

This commit is contained in:
Adrian Malacoda 2016-11-27 02:04:20 -06:00
parent ea6b0ddb1f
commit 808677b327

2
tge/util.py Normal file
View File

@ -0,0 +1,2 @@
def sanitize_title (title):
return title.replace("/", "-").replace(":", "-")