Fix unicode bug and spelling error
authorMagnus Hagander <magnus@hagander.net>
Sun, 23 Sep 2018 13:31:59 +0000 (15:31 +0200)
committerMagnus Hagander <magnus@hagander.net>
Sun, 23 Sep 2018 13:31:59 +0000 (15:31 +0200)
postgresqleu/confreg/backendforms.py

index 2ca165d12f2d4c37a7124a14920061e3a48725a6..ee1126511e6c3787c3e659fdb5a5c43546929205 100644 (file)
@@ -741,7 +741,7 @@ class BackendNewsForm(BackendForm):
                # Must be administrator on current conference
                self.fields['author'].queryset = NewsPosterProfile.objects.filter(author__conference=self.conference)
                # Add help hint dynamically so we can include the conference name
-               self.fields['title'].help_text = 'Note! Title wil be prefixed with "{0} - " on shared frontpage and RSS!'.format(self.conference.conferencename)
+               self.fields['title'].help_text = u'Note! Title will be prefixed with "{0} - " on shared frontpage and RSS!'.format(self.conference.conferencename)
 
 
 #