X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/fa5a185ce54eb7bacaadc34f05abb63e701d39d8..f906193db2ec44590f57beae2e8ee2df76117b7b:/apps/api/helpers.py diff --git a/apps/api/helpers.py b/apps/api/helpers.py index f01522aa7..aa22465fc 100644 --- a/apps/api/helpers.py +++ b/apps/api/helpers.py @@ -3,6 +3,6 @@ from time import mktime def timestamp(dtime): - "converts a datetime.datetime object to a timestamp with fractional part" - return mktime(dtime.timetuple()) + dtime.microsecond / 1000000.0 + "converts a datetime.datetime object to a timestamp int" + return int(mktime(dtime.timetuple()))