Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion email_split/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def split_email(cls, email):
"""Break up an email and initialize a new class"""
# Break up our email at its `@`
# https://docs.python.org/2/library/stdtypes.html#str.partition
local, _, domain = email.partition('@')
local, _, domain = email.rpartition('@')

# Initialize and return our class
return Email(local=local, domain=domain)
Expand Down