diff options
Diffstat (limited to 'src/mailman/commands/eml_membership.py')
| -rw-r--r-- | src/mailman/commands/eml_membership.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/commands/eml_membership.py b/src/mailman/commands/eml_membership.py index 542e6fd4d..d88406ae8 100644 --- a/src/mailman/commands/eml_membership.py +++ b/src/mailman/commands/eml_membership.py @@ -72,7 +72,7 @@ used. print(_('$self.name: No valid address found to subscribe'), file=results) return ContinueProcessing.no - if not isinstance(address, unicode): + if isinstance(address, bytes): address = address.decode("ascii") # Have we already seen one join request from this user during the # processing of this email? |
