Strip whitespace from title tag on import of Songbeamer file

This commit is contained in:
Simon Hanna 2016-01-03 01:39:53 +01:00
parent 607371a6d7
commit 6e9547dc33
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class SongBeamerImport(SongImport):
elif tag_val[0] == '#TextAlign':
pass
elif tag_val[0] == '#Title':
self.title = str(tag_val[1])
self.title = str(tag_val[1]).strip()
elif tag_val[0] == '#TitleAlign':
pass
elif tag_val[0] == '#TitleFontSize':