Merge pull request #6 from DO2BN/master

wrong variable used, possible typo. TS change working now.
This commit is contained in:
Cort Buffington 2016-09-03 06:42:46 -05:00 committed by GitHub
commit 608a4a06c7
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class routerMASTER(HBMASTER):
_tmp_bits = _bits ^ 1 << 7
else:
_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(_tmp_data))
systems[_target].send_system(_tmp_data)