summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/yaml-extract2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/yaml-extract b/scripts/yaml-extract
index 98b332b7..5a945b6d 100755
--- a/scripts/yaml-extract
+++ b/scripts/yaml-extract
@@ -50,9 +50,7 @@ import yaml
with open(sys.argv[1]) as f:
obj = yaml.safe_load(f)
-# print "AAA", repr(obj)
for thing in sys.argv[2:]:
- # print "XXX", repr(obj), repr(thing)
if type(obj) == dict:
obj = obj[thing]
elif type(obj) == list: