Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Converting string to datetime object in python

Given the below Python

import datetime

>>> a
'2011-05-04 16:20:09 -0700'
>>> datetime.datetime.strptime(a, "%Y-%m-%d %H:%M:%S %z")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.6/_strptime.py", line 317, in _strptime
    (bad_directive, format))
ValueError: 'z' is a bad directive in format '%Y-%m-%d %H:%M:%S %z'
>>> 

I don't really understand how %z is a bad directive.

Reference: http://docs.python.org/library/datetime.html#strftime-strptime-behavior

This is from hg, which says that it is in ISO8601 format.

share|improve this question
Related: stackoverflow.com/questions/526406/… – jathanism May 5 '11 at 18:38
@Sentinel: Thanks. – Paul Nathan May 5 '11 at 18:44

marked as duplicate by esaelPsnoroMoN, Paul Nathan, Daenyth, John Saunders, Graviton May 10 '11 at 1:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.