diff --git a/paramecio/citoplasma/httputils.py b/paramecio/citoplasma/httputils.py index ad960c5..8eeeb83 100644 --- a/paramecio/citoplasma/httputils.py +++ b/paramecio/citoplasma/httputils.py @@ -80,7 +80,14 @@ class GetPostFiles: self.post={} - self.post=request.forms.decode() + try: + + self.post=request.forms.decode('utf-8') + + except: + + request.forms.recode_unicode=False + self.post=request.forms.decode('utf-8') if len(required_post)==0: required_post=self.post.keys()