r"""
Convert tinydns and dnscache logs to human-readable form
"""
+# Avoid clobbering the top-level exit() built-in.
+import sys
+
from signal import signal, SIGINT
-from sys import exit, stdin
from argparse import ArgumentParser, FileType
from djbdns.io import parse_logfile
metavar="LOGFILE",
type=FileType("r"),
nargs="*",
- default=[stdin],
+ default=[sys.stdin],
help="djbdns logfile to process (default: stdin)")
# Warning: argparse automatically opens its file arguments here,
# Install a SIGINT handler so thst we don't spit out a stack trace when
# the user accidentally starts the program with no arguments and then
# hits Ctrl-C to kill it.
-signal(SIGINT, lambda s,f: exit(0))
+signal(SIGINT, lambda s,f: sys.exit(0))
for f in args.logfiles:
parse_logfile(f)