Skip to content
Snippets Groups Projects

Sweeping !24861 from master to 21.2. Explicitly check the validity of the objects before asking for their elements in diff_root_files.py

Merged Sweeping !24861 from master to 21.2. Explicitly check the validity of the objects before asking for their elements in diff_root_files.py
Merged Atlas Nightlybuild requested to merge cherry-pick-dfc75f3744-21.2 into 21.2
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -261,7 +261,7 @@ def main(args):
read_old = True
read_new = True
if (args.order_trees and d_old[-1] == d_new[-1]) or d_old == d_new:
if (args.order_trees and d_old and d_new and d_old[-1] == d_new[-1]) or d_old == d_new:
n_good += 1
continue
Loading