fix Python 3 incompatibility (PY-2955)

This commit is contained in:
Dmitry Jemerov
2011-02-17 13:21:30 +01:00
parent 7184774771
commit d72aa3f85f
+1 -1
View File
@@ -26,7 +26,7 @@ but seemingly no one uses them in C extensions yet anyway.
from datetime import datetime
OUR_OWN_DATETIME = datetime(2011, 02, 13, 1, 55, 0) # datetime.now() of edit time
OUR_OWN_DATETIME = datetime(2011, 2, 13, 1, 55, 0) # datetime.now() of edit time
# we could use script's ctime, but the actual running copy may have it all wrong.
#
# Note: DON'T FORGET TO UPDATE!