From 0c6babde080f14c09d4a93d3a6138c36728c4651 Mon Sep 17 00:00:00 2001 From: gecong1973 Date: Tue, 23 Aug 2016 16:14:07 +0800 Subject: [PATCH] Remove white space between print and () TrivialFix Change-Id: I5219e319e9d7e5cc8307e45c60e1e2d2d25d9d5c --- contrib/dns_dump_hex_to_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/dns_dump_hex_to_text.py b/contrib/dns_dump_hex_to_text.py index d1570a93..bc599de7 100644 --- a/contrib/dns_dump_hex_to_text.py +++ b/contrib/dns_dump_hex_to_text.py @@ -25,4 +25,4 @@ import dns.rdatatype unhexed = binascii.unhexlify(sys.argv[1]) response = dns.message.from_wire(unhexed) -print (response.to_text()) +print(response.to_text())