mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2024-12-22 00:33:33 +01:00
Remove backslashes from author and origin
This commit is contained in:
parent
fbc0e9c2a7
commit
067ef5f397
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue