Skip to content

Commit b606c70

Browse files
Update circuit_maintenance_parser/parsers/equinix.py
Co-authored-by: Josh VanDeraa <josh@josh-v.com>
1 parent 77d759e commit b606c70

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
@@ -164,7 +164,7 @@ def parse_subject(self, subject: str) -> List[Dict]:
164164
# If not matched between brackets, look for maintenace_id in format of CHG[0-9]+
165165
maintenance_id = re.search(r"CHG\d+", subject)
166166
if maintenance_id:
167-
data["maintenance_id"] = data["maintenance_id"] = maintenance_id.group()
167+
data["maintenance_id"] = maintenance_id.group()
168168

169169
data["summary"] = subject.strip().replace("\n", "")
170170
if "completed" in subject.lower():

0 commit comments

Comments
 (0)