You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-util/nml/files/nml-0.4.4-pillow3.patch

12 lines
288 B

--- nml-0.4.4.orig/nml/lz77.py
+++ nml-0.4.4/nml/lz77.py
@@ -25,7 +25,7 @@
@return: Compressed data.
@rtype: C{bytearray}
"""
- stream = data.tostring()
+ stream = data.tobytes()
position = 0
output = array.array('B')
literal_bytes = array.array('B')