Skip to content

Commit

Permalink
Update paths.py (project-chip#36852)
Browse files Browse the repository at this point in the history
Fix the path to the documentation file.
  • Loading branch information
lboue authored Dec 17, 2024
1 parent d0ec3a7 commit 4ae6882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/spec_xml/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_documentation_file_path():
Returns the path to the documentation file.
"""
chip_root = get_chip_root()
documentation_file = os.path.join(chip_root, 'docs', 'spec_clusters.md')
documentation_file = os.path.join(chip_root, 'docs', 'ids_and_codes', 'spec_clusters.md')
if not os.path.exists(documentation_file):
raise FileNotFoundError(f"Documentation file does not exist: {documentation_file}")
return documentation_file
Expand Down

0 comments on commit 4ae6882

Please sign in to comment.