Dust Cam Review

--> -->
 
 
ValueError
Python 3.6.9: /usr/bin/python3
Fri Jun 27 20:21:21 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /usr/lib/cgi-bin/reviewVideo in <module>()
     90 if dateString is not None:
     91         print('\t\t\t\t\t\t<input type="text" class="shadowed" name="dateString" id="datepicker" value="' + dateString + '">')
=>   92         dateTime = datetime.datetime.strptime(dateString, "%m/%d/%Y")
     93         nextDateTime = datetime.datetime.strptime(dateString, "%m/%d/%Y") + datetime.timedelta(days=1)
     94         previousDateTime = datetime.datetime.strptime(dateString, "%m/%d/%Y") - datetime.timedelta(days=1)
dateTime undefined, datetime = <module 'datetime' from '/usr/local/lib/python3.6/datetime.py'>, datetime.datetime = <class 'datetime.datetime'>, datetime.datetime.strptime = <built-in method strptime of type object>, dateString = '07%2F16%2F2018'
 /usr/local/lib/python3.6/_strptime.py in _strptime_datetime(cls=<class 'datetime.datetime'>, data_string='07%2F16%2F2018', format='%m/%d/%Y')
    563     """Return a class cls instance based on the input string and the
    564     format string."""
=>  565     tt, fraction = _strptime(data_string, format)
    566     tzname, gmtoff = tt[-2:]
    567     args = tt[:6] + (fraction,)
tt undefined, fraction undefined, global _strptime = <function _strptime>, data_string = '07%2F16%2F2018', format = '%m/%d/%Y'
 /usr/local/lib/python3.6/_strptime.py in _strptime(data_string='07%2F16%2F2018', format='%m/%d/%Y')
    360     if not found:
    361         raise ValueError("time data %r does not match format %r" %
=>  362                          (data_string, format))
    363     if len(data_string) != found.end():
    364         raise ValueError("unconverted data remains: %s" %
data_string = '07%2F16%2F2018', format = '%m/%d/%Y'

ValueError: time data '07%2F16%2F2018' does not match format '%m/%d/%Y'
      args = ("time data '07%2F16%2F2018' does not match format '%m/%d/%Y'",)
      with_traceback = <built-in method with_traceback of ValueError object>