| # look for I-xx with Bus instead of BL or BS |
| ifre.fullmatch('I\-[0-9]*Bus', w.label): |
| datacheckerrors.append(DatacheckEntry(r,[w.label],'BUS_WITH_I')) |
requires a full match, which means some labels (e.g. with directional suffixes, or abbrevs) could slip thru the cracks.
I'll cook up a few test cases and test them out.
C++ version is not affected.
DataProcessing/siteupdate/python-teresco/siteupdate.py
Lines 3349 to 3351 in 5c69952
requires a full match, which means some labels (e.g. with directional suffixes, or abbrevs) could slip thru the cracks.
I'll cook up a few test cases and test them out.
C++ version is not affected.