Skip to content
This repository was archived by the owner on Sep 30, 2019. It is now read-only.

Fix IOError string in Adafruit_I2C.py #14

Merged
merged 1 commit into from
Dec 3, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Adafruit_I2C/Adafruit_I2C.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def readList(self, reg, length):
print results
return results
except IOError, err:
print "Error accessing 09x%02X: Check your I2C address" % self.address
print "Error accessing 0x%02X: Check your I2C address" % self.address
return -1

def readU8(self, reg):
Expand Down