The branch, master has been updated
via 9ee4d94 python: Fix print in dns_invalid.py
from d0ed4a5 ctdb: calculate queue input buffer size correctly
https://git.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 9ee4d9466e42ef419ddbb39efbc476532cd221d3
Author: Andreas Schneider <[email protected]>
Date: Fri Aug 17 12:06:38 2018 +0200
python: Fix print in dns_invalid.py
https://bugzilla.samba.org/show_bug.cgi?id=13580
Signed-off-by: Andreas Schneider <[email protected]>
Autobuild-User(master): Andreas Schneider <[email protected]>
Autobuild-Date(master): Sat Aug 18 15:21:39 CEST 2018 on sn-devel-144
-----------------------------------------------------------------------
Summary of changes:
python/samba/tests/dns_invalid.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Changeset truncated at 500 lines:
diff --git a/python/samba/tests/dns_invalid.py
b/python/samba/tests/dns_invalid.py
index 9f87cd5..46611eb 100644
--- a/python/samba/tests/dns_invalid.py
+++ b/python/samba/tests/dns_invalid.py
@@ -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)
--
Samba Shared Repository