Skip to content

Commit

Permalink
Include Fixed TypeError ptrkrysik#509 @cropinghigh
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler committed Aug 13, 2021
1 parent 314601c commit 4493100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/transmitter/txtime_bursts_tagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 4493100

Please sign in to comment.