Skip to content

Crash on start with Python 2.7. #1

@ndob

Description

@ndob

On Python 2.7 there's a problem in yowsup-library, that can lead to a crash on start, because of unicode decoding error. This needs more investigation, but can be worked around for now.

To fix the issue edit yowsup/structs/protocoltreenode.py and change line 63
from

out += "%s" % self.data

to

try:
  out += "%s" % self.data
except UnicodeDecodeError:
  pass

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions