]> gitweb.michael.orlitzky.com - djbdns-logparse.git/blobdiff - djbdns/common.py
djbdns/*.py: capitalize global variables.
[djbdns-logparse.git] / djbdns / common.py
index 06124bf2ef03135d7177b18787a61d8bf7ed31b0..ea5dd310a79f98486a663caaf2b53fe40b15fede 100644 (file)
@@ -3,7 +3,7 @@ from struct import pack
 # A pattern to match the timestamp format that the tai64nlocal program
 # produces. It appears in both dnscache and tinydns lines, after
 # they've been piped through tai64nlocal, of course.
-timestamp_pat = r'[\d-]+ [\d:\.]+'
+TIMESTAMP_PAT = r'[\d-]+ [\d:\.]+'
 
 # A dictionary mapping query type identifiers, in decimal, to their
 # friendly names for tinydns. Reference:
@@ -12,7 +12,7 @@ timestamp_pat = r'[\d-]+ [\d:\.]+'
 #
 # Note that mapping here is non-exhaustive, and that tinydns will
 # log responses for record types that it does not know about.
-query_type_name = {
+QUERY_TYPE_NAME = {
       1: "a",
       2: "ns",
       5: "cname",