Remove backslashes from author and origin

This commit is contained in:
Carlos Galindo 2021-02-15 20:46:24 +01:00
parent fbc0e9c2a7
commit 067ef5f397

View file

@ -18,8 +18,8 @@ class Song:
self.verses = []
self.name = name.replace("\\\\", "-").replace("\\", "")
self.number = number
self.author = author
self.origin = origin
self.author = author.replace("\\", "")
self.origin = origin.replace("\\", "")
self.latex_file = latex_file
self.audios = audios
self.capo = capo