Skip to content

Commit 567f65c

Browse files
committed
that was a test to see if travis would catch it ;)
1 parent 2754d0e commit 567f65c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_gps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def send_command(self, command, add_checksum=True):
125125
for char in command:
126126
checksum ^= char
127127
self._uart.write(b'*')
128-
self._uart.write(bytes('{:02x}'.format(checksum).upper(), "ascii))
128+
self._uart.write(bytes('{:02x}'.format(checksum).upper(), "ascii"))
129129
self._uart.write(b'\r\n')
130130

131131
@property

0 commit comments

Comments
 (0)