Skip to content

Commit

Permalink
Windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fraca7 committed Jan 3, 2021
1 parent 64e9c68 commit a38200e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsrlib/ui/wizard/pages/pizero.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def _setState(self, state):
self.wizard().button(self.wizard().NextButton).click()

def _onReport(self, data):
macaddr = ':'.join(['%02X' % val for val in reversed(data[1:])])
macaddr = ':'.join(['%02X' % val for val in reversed(data[1:7])])

self._setState(self.STATE_NETWORK)
self.setSubTitle(_('Uploading pairing info...'))
Expand Down

0 comments on commit a38200e

Please sign in to comment.