diff options
Diffstat (limited to 'project2/proj2_s4498062/dns_client.py')
-rwxr-xr-x | project2/proj2_s4498062/dns_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/proj2_s4498062/dns_client.py b/project2/proj2_s4498062/dns_client.py index b78c7ee..ecc3f3d 100755 --- a/project2/proj2_s4498062/dns_client.py +++ b/project2/proj2_s4498062/dns_client.py @@ -6,6 +6,7 @@ A simple example of a client using the DNS resolver. import dns.resolver + def main(): """Run the client""" # Parse arguments @@ -31,4 +32,3 @@ def main(): if __name__ == "__main__": main() - |