b4763d5 fix countme.parse_logtime for Python 3.6

Authored and Committed by Will Woods 3 years ago
    fix countme.parse_logtime for Python 3.6
    
    Python 3.6 datetime doesn't have `fromisoformat`, so we can't use that
    to parse logtimes. Curses!
    
    I did a little parsing speed shootout and found a close equivalent that
    just uses str.split() and constructs the datetime object manually.
    
        
file modified
+28 -14