This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ValueError: time data 'N/A' does not match format '%Y%m%d'
Type: compile error Stage: resolved
Components: Windows Versions: Python 2.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: marki94, paul.moore, r.david.murray, steve.dower, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2017-12-15 19:46 by marki94, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg308423 - (view) Author: ikram (marki94) Date: 2017-12-15 19:46
Traceback (most recent call last):
  File "H:\Whatsapp_Xtract_V2.2_2012-11-17\whatsapp_xtract.py", line 2453, in <module>
    main(sys.argv[1:])
  File "H:\Whatsapp_Xtract_V2.2_2012-11-17\whatsapp_xtract.py", line 1921, in main
    linkimage = findfile ("IMG", y.media_size, y.local_url, date, 2)
  File "H:\Whatsapp_Xtract_V2.2_2012-11-17\whatsapp_xtract.py", line 1266, in findfile
    timestamptoday = int(str(time.mktime(datetime.datetime.strptime(date, "%Y%m%d").timetuple()))[:-2])
  File "C:\Python27\lib\_strptime.py", line 332, in _strptime
    (data_string, format))
ValueError: time data 'N/A' does not match format '%Y%m%d'
Press any key to continue . . .
msg308427 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-12-15 21:34
This is not a bug in python.  If it is your code contact the pyhon-list mailing for help.  If you got whatsapp_xtract from somewhere else, contact that community with your questions.
History
Date User Action Args
2022-04-11 14:58:55adminsetgithub: 76521
2017-12-15 21:34:40r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg308427

resolution: third party
stage: resolved
2017-12-15 19:46:47marki94create