Skip to content

Commit

Permalink
Merge pull request #41 from ECN/Bug_fix-subject-header-in-ECNQueue-Mo…
Browse files Browse the repository at this point in the history
…dule

Fixed Subject Bug
  • Loading branch information
campb303 authored Sep 2, 2020
2 parents 50eb803 + d1f6503 commit c685d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/ECNQueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def __parseHeaders(self) -> list:
# [ce] QTime-Updated-By: campb303 becomes
# QTime-Updated-By: campb303
queuePrefixPattern = re.compile("\[.*\] {1}")
for lineNumber in range(self.__getHeaderBoundary() - 1):
for lineNumber in range(self.__getHeaderBoundary()):
line = self.__rawItem[lineNumber]
lineHasQueuePrefix = queuePrefixPattern.match(line)

Expand Down

0 comments on commit c685d35

Please sign in to comment.