mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2024-12-22 08:43:33 +01:00
Fixed latex file path generation
This commit is contained in:
parent
094a9b093f
commit
5e3ca2ad3a
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class SongLoader:
|
||||||
author=read_property(re_song_begin_match.group(2), "by"),
|
author=read_property(re_song_begin_match.group(2), "by"),
|
||||||
origin=read_property(re_song_begin_match.group(2), "m"),
|
origin=read_property(re_song_begin_match.group(2), "m"),
|
||||||
category=self.category,
|
category=self.category,
|
||||||
latex_file=song_file)
|
latex_file=song_file[song_file.index('/')+1:])
|
||||||
transpose = 0
|
transpose = 0
|
||||||
memory = None
|
memory = None
|
||||||
memorizing = False
|
memorizing = False
|
||||||
|
|
Loading…
Reference in a new issue