]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: selectors
authorJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:34:38 +0000 (10:34 +0000)
committerJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:34:38 +0000 (10:34 +0000)
regression-tests/bulktest-report.py

index 02f2b1f14ed42d633dba34e9ff8a95032b1a9b53..f756cca544ae5d38a6e7b61b8e74cd3f9643765d 100755 (executable)
@@ -3,7 +3,7 @@ import json, sys
 
 runs = json.load(sys.stdin)
 
-selecters = dict(s.split('=',1) for s in sys.argv[1:])
+selectors = dict(s.split('=',1) for s in sys.argv[1:])
 
 selected=list()
 
@@ -11,7 +11,7 @@ names=set()
 
 for run in runs:
        match = True
-       for k,v in selecters.iteritems():
+       for k,v in selectors.iteritems():
                # print k, v, run[k]
                if run[k] != v:
                        match = False