Here are some notes on the issue that I put together:
- datetime.strptime %M%S does not work for etime.
- The etime format is MMMSS, with M being minutes and S being seconds, and without any zero left-padding.
- %M%S only works for a maximum of 59 minutes and 59 seconds.
- Single digits are being skipped, as are any values greater than 5959.
- Two digits are being parsed as MS, where they should be SS.
- Three digits are being parsed as MMS, unless MM > 59, then it parses as MSS.
I have submitted a pull request with a simple fix.
Here are some notes on the issue that I put together:
I have submitted a pull request with a simple fix.