]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Silence: E741 ambiguous variable name 'l'
authorMark Andrews <marka@isc.org>
Tue, 12 May 2020 07:41:41 +0000 (17:41 +1000)
committerOndřej Surý <ondrej@isc.org>
Tue, 12 May 2020 12:05:37 +0000 (14:05 +0200)
(cherry picked from commit 189d21fb9602a56b1606d514bc6b313d03ef419e)

bin/tests/system/dnstap/ydump.py

index 6788b054b81bbbfe92056f6543684f7e18d0967c..2250febe3d31d3c3646d5e7be0b6b7ea5b5c252c 100644 (file)
@@ -25,5 +25,5 @@ DATAFILE = sys.argv[2]
 ARGS = [DNSTAP_READ, '-y', DATAFILE]
 
 with subprocess.Popen(ARGS, stdout=subprocess.PIPE) as f:
-    for l in yaml.load_all(f.stdout):
-        pprint.pprint(l)
+    for y in yaml.load_all(f.stdout):
+        pprint.pprint(y)