Skip to content

Error in email module exception handling #116705

@naga0001

Description

@naga0001

try:
value = value.decode(charset, 'surrogateescape')
except (LookupError, UnicodeEncodeError):

This is incorrect.
except (LookupError, UnicodeEncodeError):

Isn't this correct?
except (LookupError, UnicodeDecodeError):

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions