open screenshot in binary mode

master
Quentin Duchemin 2020-05-04 18:40:00 +02:00
parent 17738f5827
commit 3a151e0446
Signed by: Chosto
GPG Key ID: 0547178FEEDE7D6B
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def read_args(argv):
def screenshot(img_format):
output = '/tmp/screenshot'
proc = subprocess.run(['maim', '-sl', '--color=0.6,0.4,0.2,0.2', '-f', img_format, '-u', '-m', '9', '-b', '5', output], check=True)
with open(output) as f:
with open(output, 'rb') as f:
return f.read()
def save_img(path, img, img_format):