Skip to content
Snippets Groups Projects
Commit 80f6addd authored by Eric S. Raymond's avatar Eric S. Raymond
Browse files

UDP send logic works. TCP send logic doesn't.

parent 60dcbc22
No related branches found
No related tags found
No related merge requests found
......@@ -160,9 +160,9 @@ if __name__ == "__main__":
if tok.startswith(key + "="):
val = tok[len(key)+1:]
if key in booleans:
if val.lower == "true":
if val.lower() == "true":
setattr(extractor, key, True)
elif val.lower == "false":
elif val.lower() == "false":
setattr(extractor, key, False)
else:
setattr(extractor, key, val)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment