fix posting messages on fucking old python versions
This commit is contained in:
parent
7a51e53faa
commit
1c118c8e52
1 changed files with 2 additions and 2 deletions
|
|
@ -70,8 +70,8 @@ class DLFP(BaseBrowser):
|
|||
'timestamp': '',
|
||||
'res_type': content_type,
|
||||
'referer': '%s://%s%s' % (self.PROTOCOL, self.DOMAIN, id2url(thread)),
|
||||
'subject': title,
|
||||
'body': message,
|
||||
'subject': unicode(title).encode('utf-8'),
|
||||
'body': unicode(message).encode('utf-8'),
|
||||
'format': 3,
|
||||
'submit': 'Envoyer',
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue