File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11srctype = micropython-lib
22type = module
3- version = 0.1
3+ version = 0.1.1
44author = Paul Sokolovsky
55long_desc = Lightweight tarfile module subset
Original file line number Diff line number Diff line change 66
77
88setup (name = 'micropython-utarfile' ,
9- version = '0.1' ,
9+ version = '0.1.1 ' ,
1010 description = 'utarfile module for MicroPython' ,
1111 long_description = 'Lightweight tarfile module subset' ,
1212 url = 'https://github.com/micropython/micropython/issues/405' ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def next(self):
5656 if not buf :
5757 return None
5858
59- h = uctypes .struct (TAR_HEADER , uctypes .addressof (buf ), uctypes .LITTLE_ENDIAN )
59+ h = uctypes .struct (uctypes .addressof (buf ), TAR_HEADER , uctypes .LITTLE_ENDIAN )
6060
6161 # Empty block means end of archive
6262 if h .name [0 ] == 0 :
You can’t perform that action at this time.
0 commit comments