diff options
author | Camil Staps | 2016-05-22 22:02:36 +0200 |
---|---|---|
committer | Camil Staps | 2016-05-22 22:02:36 +0200 |
commit | da97de6bc75e9606a536d87d5b3c7b93ba83af12 (patch) | |
tree | 21126eabfec3ba3802b9abba5cdd084928adb530 /project2/proj2_s4498062/dns_client.py | |
parent | Fix resource.py; lint (diff) |
Caching resolver; DOESN'T work. Should remove this.
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() - |