summaryrefslogtreecommitdiff
path: root/project2/proj2_s4498062/dns_client.py
diff options
context:
space:
mode:
authorCamil Staps2016-05-22 22:02:36 +0200
committerCamil Staps2016-05-22 22:02:36 +0200
commitda97de6bc75e9606a536d87d5b3c7b93ba83af12 (patch)
tree21126eabfec3ba3802b9abba5cdd084928adb530 /project2/proj2_s4498062/dns_client.py
parentFix resource.py; lint (diff)
Caching resolver; DOESN'T work. Should remove this.
Diffstat (limited to 'project2/proj2_s4498062/dns_client.py')
-rwxr-xr-xproject2/proj2_s4498062/dns_client.py2
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()
-