Skip to content

Commit 4b9b611

Browse files
author
BoboTiG
committed
Fix inexistant alias ...
1 parent d2a4538 commit 4b9b611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mss.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def save_img(self, data, width, height, output):
193193
zcrc32 = crc32
194194
zcompr = compress
195195
len_sl = width * 3
196-
png_filter = b(b'>B', 0)
196+
png_filter = pack(b'>B', 0)
197197
scanlines = b''.join(
198198
[png_filter + data[y * len_sl:y * len_sl + len_sl]
199199
for y in range(height)])

0 commit comments

Comments
 (0)