diff options
| author | sommersoft <sommersoft@gmail.com> | 2019-07-27 11:01:10 -0500 |
|---|---|---|
| committer | sommersoft <sommersoft@gmail.com> | 2019-07-27 11:01:10 -0500 |
| commit | 143275db044ae8a3f1d5aebb5b4c7ddfe49e4d69 (patch) | |
| tree | 066429423dbc4b6afda3a1f826cba046ba17fea2 /docs | |
| parent | cebdadd0f6122826337c962b3d443bd41d1de69d (diff) | |
fix board_exclusion lookup
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/shared_bindings_matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/shared_bindings_matrix.py b/docs/shared_bindings_matrix.py index c3ca0258f..ed88efc75 100644 --- a/docs/shared_bindings_matrix.py +++ b/docs/shared_bindings_matrix.py @@ -233,7 +233,7 @@ def support_matrix_by_board(): if base_with_exclusions[module]["excluded"]: for port in base_with_exclusions[module]["excluded"].values(): #print(port) - if board_name in port: + if entry.name in port: board_has_module = False if board_has_module: |
