trivial name changes

This commit is contained in:
Babak Farrokhi 2016-05-02 12:46:51 +04:30
parent 991757e223
commit 93c9edbd51
Signed by: farrokhi
GPG Key ID: 6B267AD85D632E9A
2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ dnstraceroute.py DNS: 8.8.4.4:53, hostname: yahoo.com, rdatatype: A
10 *
11 google-public-dns-b.google.com (8.8.4.4) 48 ms
=== Expert Report ===
=== Expert Hints ===
[*] public DNS server is next to an invisible hop (probably a firewall)
```

View File

@ -127,7 +127,7 @@ def signal_handler(sig, frame):
def expert_report(trace_path, color_mode):
color = Colors(color_mode)
print("\n%s=== Expert Report ===%s" % (color.B, color.N))
print("\n%s=== Expert Hints ===%s" % (color.B, color.N))
if len(trace_path) == 0:
print(" [*] empty trace - should not happen")
return
@ -154,7 +154,7 @@ def expert_report(trace_path, color_mode):
return
## no expert info available
print(" %s[*]%s No expert hint available" % (color.G, color.N))
print(" %s[*]%s No expert hint available for this trace" % (color.G, color.N))
def main():