Unreviewed changes
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: scripts/build_id_conv.py
Insertions: 5, Deletions: 5.
@@ -151,14 +151,14 @@
args = parser.parse_args(unparsed_args)
- input_paths = map(os.path.abspath, args.input)
- input_paths_list = list(
- filter(os.path.exists, input_paths)
+ input_paths_map = map(os.path.abspath, args.input)
+ input_paths = list(
+ filter(os.path.exists, input_paths_map)
) # conventionally ignore empty inputs
- input_dirs = list(filter(os.path.isdir, input_paths_list))
+ input_dirs = list(filter(os.path.isdir, input_paths))
if len(input_dirs) > 0:
assert len(input_dirs) == len(
- input_paths_list
+ input_paths
), "input formats cannot be mixed"
in_fmt = build_id_fmt
else:
```