mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix Python 3 incompatibility (PY-2955)
This commit is contained in:
@@ -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!
|
||||
|
||||
Reference in New Issue
Block a user