diff --git a/dataobjs.py b/dataobjs.py index f2dc448..a861e20 100644 --- a/dataobjs.py +++ b/dataobjs.py @@ -375,14 +375,14 @@ class PesterProfile: def moodmsg(self, mood, syscolor, theme): return ( - "-- %s [%s] changed their mood to %s --" + '-- %s [%s] changed their mood to %s --' % ( syscolor.name(), self.handle, self.colorhtml(), self.initials(), mood.name().upper(), - theme["main/chums/moods"][mood.name()]["icon"], + theme["main/chums/moods"][mood.name()]["icon"].replace(" ", "%20"), ) )