diff --git a/pyghmi/util/parse.py b/pyghmi/util/parse.py index 3d476f67..eeed100a 100644 --- a/pyghmi/util/parse.py +++ b/pyghmi/util/parse.py @@ -56,4 +56,8 @@ def parse_time(timeval): return datetime.strptime(timeval, '%Y-%m-%d') except ValueError: pass + try: + return datetime.strptime(timeval, '%m/%d/%Y') + except ValueError: + pass return None \ No newline at end of file