We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ba3d1b + 514aa26 commit e312056Copy full SHA for e312056
src/FlashAir/card.py
@@ -44,7 +44,7 @@ def __init__(self, file_name, directory_name, size, attributes, date, time):
44
45
date=int(date)
46
self.date=date;
47
- self.date_human=(((date&(0x3F<<9))>>9)+1980,((date&(0x1F<<5))>>5),date&(0x1F))
+ self.date_human=(((date&(0x3F<<9))>>9)+1980,((date&(0xF<<5))>>5),date&(0x1F))
48
49
50
class command(object):
0 commit comments