Skip to content

Commit 5734030

Browse files
committed
Fix error string
1 parent 9ab45e9 commit 5734030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Adafruit_I2C/Adafruit_I2C.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def readList(self, reg, length):
5656
print results
5757
return results
5858
except IOError, err:
59-
print "Error accessing 09x%02X: Check your I2C address" % self.address
59+
print "Error accessing 0x%02X: Check your I2C address" % self.address
6060
return -1
6161

6262
def readU8(self, reg):

0 commit comments

Comments
 (0)