wrong variable used, possible typo. TS change working now.

This commit is contained in:
Bastian, DO2BN 2016-09-03 12:05:54 +02:00
parent 524e5442d1
commit 4a1a838529

View File

@ -79,7 +79,7 @@ class routerMASTER(HBMASTER):
_tmp_bits = _bits ^ 1 << 7 _tmp_bits = _bits ^ 1 << 7
else: else:
_tmp_bits = _bits _tmp_bits = _bits
_tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_bits) + _data[16:] _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:]
print(h(_data)) print(h(_data))
print(h(_tmp_data)) print(h(_tmp_data))
systems[_target].send_system(_tmp_data) systems[_target].send_system(_tmp_data)