zilencer's populate_db.py: Remove unnecessary cast to text_type.

This commit is contained in:
Eklavya Sharma 2016-06-28 23:59:00 +05:30 committed by Tim Abbott
parent 21f789eb05
commit 88354ad1fc
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ def restore_saved_messages():
sender_email = old_message["sender_email"]
domain = text_type(split_email_to_domain(sender_email))
domain = split_email_to_domain(sender_email)
realm_set.add(domain)
if old_message["sender_email"] not in email_set: