[sip/sms] Échec Sémantique, on remet les paramètres dans le bon ordre

This commit is contained in:
Valentin Samir 2013-06-16 22:22:59 +02:00
parent f8f4d7e9ec
commit 73c5136920

View file

@ -86,9 +86,9 @@ class Sms(object):
f.write(dst)
with open(path + 'body', 'w') as f:
if body_type=='str':
f.write(body)
elif body_type=='base64':
f.write(base64.encodestring(body).strip())
elif body_type=='base64':
f.write(body)