Skip to content

Commit

Permalink
Fixed Subject Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Daniel Bennett committed Aug 31, 2020
1 parent 648aa65 commit d1f6503
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 @@ -130,7 +130,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

1 comment on commit d1f6503

@campb303
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is related to #9 .

Please sign in to comment.