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 1
1
srctype = micropython-lib
2
2
type = module
3
- version = 0.1
3
+ version = 0.1.1
4
4
author = Paul Sokolovsky
5
5
long_desc = Lightweight tarfile module subset
Original file line number Diff line number Diff line change 6
6
7
7
8
8
setup (name = 'micropython-utarfile' ,
9
- version = '0.1' ,
9
+ version = '0.1.1 ' ,
10
10
description = 'utarfile module for MicroPython' ,
11
11
long_description = 'Lightweight tarfile module subset' ,
12
12
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):
56
56
if not buf :
57
57
return None
58
58
59
- h = uctypes .struct (TAR_HEADER , uctypes .addressof (buf ), uctypes .LITTLE_ENDIAN )
59
+ h = uctypes .struct (uctypes .addressof (buf ), TAR_HEADER , uctypes .LITTLE_ENDIAN )
60
60
61
61
# Empty block means end of archive
62
62
if h .name [0 ] == 0 :
You can’t perform that action at this time.
0 commit comments