Skip to content

Commit 00bdcd3

Browse files
authored
DM tools scraper: Add new required flags. (project-chip#31078)
In 1.2.0, the scraper used positional arguments, now it uses flags. This is better, IMO. Moving the script to the new format so we can get some of the improvements from the newer scraper revisions.
1 parent 8f10ac1 commit 00bdcd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/spec_xml/generate_spec_xml.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def scrape_clusters(scraper, spec_root, output_dir, dry_run):
7979

8080
def scrape_cluster(filename: str) -> None:
8181
xml_path = get_xml_path(filename, clusters_output_dir)
82-
cmd = [scraper, 'cluster', filename, xml_path, '-nd']
82+
cmd = [scraper, 'cluster', '-i', filename, '-o', xml_path, '-nd']
8383
if dry_run:
8484
print(cmd)
8585
else:
@@ -109,7 +109,7 @@ def scrape_device_types(scraper, spec_root, output_dir, dry_run):
109109

110110
def scrape_device_type(filename: str) -> None:
111111
xml_path = get_xml_path(filename, device_types_output_dir)
112-
cmd = [scraper, 'devicetype', '-c', clusters_output_dir, '-nd', filename, xml_path]
112+
cmd = [scraper, 'devicetype', '-c', clusters_output_dir, '-nd', '-i', filename, '-o', xml_path]
113113
if dry_run:
114114
print(cmd)
115115
else:

0 commit comments

Comments
 (0)