From 449310009b419dacbeb79072d0764b309d65f8fa Mon Sep 17 00:00:00 2001 From: Bjoern Kerler Date: Fri, 13 Aug 2021 21:03:06 +0200 Subject: [PATCH] Include Fixed TypeError #509 @cropinghigh --- python/transmitter/txtime_bursts_tagger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/transmitter/txtime_bursts_tagger.py b/python/transmitter/txtime_bursts_tagger.py index 952c8d1e..e3ab6e21 100644 --- a/python/transmitter/txtime_bursts_tagger.py +++ b/python/transmitter/txtime_bursts_tagger.py @@ -77,7 +77,7 @@ def process_txtime_of_burst(self, msg): txtime_fracs = txtime_final-int(txtime_final) #print "txtime_secs",txtime_secs,"txtime_fracs",txtime_fracs tags_dict = pmt.dict_add(pmt.make_dict(), pmt.intern("tx_time"), pmt.make_tuple(pmt.from_uint64(txtime_secs),pmt.from_double(txtime_fracs))) - tags_dict = pmt.dict_add(tags_dict, pmt.intern("fn"), pmt.from_uint64(fn)) + tags_dict = pmt.dict_add(tags_dict, pmt.intern("fn"), pmt.from_uint64(fn.item())) new_msg = pmt.cons(tags_dict, pmt.cdr(msg)) self.message_port_pub(pmt.intern("bursts"), new_msg)