David Reynolds

Welcome to boredom

Python / Django Weirdness

| Comments

Can someone tell me what is the difference between this:

1
2
>>> print datetime.now().strftime('%Y-%m-%d')
2006-08-09

and this…

1
2
>>> print datetime.now().strftime('%Y-%m-%d'),
2006-08-09

… because I have no clue, but it appears to be the difference between a piece of django/python code working and not working!

Comments