mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-10-02 07:37:08 +02:00
added lz4.block
without adding this, it gives error "AttributeError: module 'lz4' has no attribute 'block'" when compiling
This commit is contained in:
parent
3295132946
commit
ac46363ed8
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
import sys, lz4
|
||||
import sys, lz4, lz4.block
|
||||
from struct import unpack as up
|
||||
|
||||
def lz4_compress(data):
|
||||
@ -30,4 +30,4 @@ def main(argc, argv):
|
||||
return 0
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main(len(sys.argv), sys.argv))
|
||||
sys.exit(main(len(sys.argv), sys.argv))
|
||||
|
Loading…
Reference in New Issue
Block a user