Commit cf5b1594 authored by Dimitris Lampridis's avatar Dimitris Lampridis

[sw] python: fix typo preventing getting fractional part of timestamps

parent 2b5a8245
......@@ -31,7 +31,7 @@ class wrtd_tstamp(Structure):
def __iter__(self):
yield 'seconds', self.seconds
yield 'ns' , self.ns
yield 'frac' , self.seconds
yield 'frac' , self.frac
@decorator.decorator
def encode_arguments(func):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment