Merge "Fix AXFR queries under py3.5"

This commit is contained in:
Jenkins 2017-08-02 18:09:22 +00:00 committed by Gerrit Code Review
commit 2cb752a240
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ class RequestHandler(xfr.XFRMixin):
# validate the parameters
try:
criterion = self._zone_criterion_from_request(
request, {'name': q_rrset.name.to_text()})
request, {'name': q_rrset.name.to_text().decode('utf-8')})
zone = self.storage.find_zone(context, criterion)
except exceptions.ZoneNotFound: