Skip to content

Commit 9c75b7f

Browse files
Update circuit_maintenance_parser/parsers/equinix.py
Co-authored-by: Josh VanDeraa <josh@josh-v.com>
1 parent 6b9ed2b commit 9c75b7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

circuit_maintenance_parser/parsers/equinix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def parse_subject(self, subject: str) -> List[Dict]:
161161
if maintenance_id:
162162
data["maintenance_id"] = maintenance_id[1]
163163
else:
164-
# If not matched between brackets, look for maintenace_id in format of CHG[0-9]+
164+
# If not matched between brackets, look for maintenance_id in format of CHG[0-9]+
165165
maintenance_id = re.search(r"CHG\d+", subject)
166166
if maintenance_id:
167167
data["maintenance_id"] = maintenance_id.group()

0 commit comments

Comments
 (0)