Use ASCII character for separator

This commit is contained in:
Babak Farrokhi 2016-06-26 17:48:03 +04:30
parent 94fa0508eb
commit 52b89212f0
Signed by: farrokhi
GPG Key ID: 6B267AD85D632E9A

View File

@ -235,7 +235,7 @@ def main():
width = maxlen(f)
blanks = (width - 5) * ' '
print('server ', blanks, ' avg(ms) min(ms) max(ms) stddev(ms) lost(%) flags')
print((84 + width) * '')
print((84 + width) * '-')
for server in f:
# check if we have a valid dns server address
if server.lstrip() == '': # deal with empty lines