1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

python: Fix print in dns_invalid.py

https://bugzilla.samba.org/show_bug.cgi?id=13580

Signed-off-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Sat Aug 18 15:21:39 CEST 2018 on sn-devel-144
This commit is contained in:
Andreas Schneider 2018-08-17 12:06:38 +02:00 committed by Andreas Schneider
parent d0ed4a536e
commit 9ee4d9466e

View File

@ -76,7 +76,7 @@ class TestBrokenQueries(DNSTest):
name = "\x10\x11\x05\xa8.%s" % self.get_dns_domain()
q = self.make_name_question(name, dns.DNS_QTYPE_A, dns.DNS_QCLASS_IN)
print "asking for ", q.name
print("asking for %s" % (q.name))
questions.append(q)
self.finish_name_packet(p, questions)