summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
diff options
context:
space:
mode:
Diffstat (limited to 'msgpack/fallback.py')
-rw-r--r--msgpack/fallback.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/msgpack/fallback.py b/msgpack/fallback.py
index 9ba98bf..08e8d46 100644
--- a/msgpack/fallback.py
+++ b/msgpack/fallback.py
@@ -691,9 +691,9 @@ class Unpacker(object):
if n == -1: # timestamp
ts = Timestamp.from_bytes(bytes(obj))
if self._timestamp == 1:
- return ts.to_float()
+ return ts.to_unix()
elif self._timestamp == 2:
- return ts.to_unix_ns()
+ return ts.to_unix_nano()
elif self._timestamp == 3:
return ts.to_datetime()
else: