From c4ed89e4f275e34fcab16d7ff69ef1152a9e841b Mon Sep 17 00:00:00 2001 From: Tom Marshall Date: Sat, 16 Jul 2022 19:24:57 +0200 Subject: [PATCH] Fixes for Python 3.x --- lineage-updater | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lineage-updater b/lineage-updater index 8539549..7f142ab 100755 --- a/lineage-updater +++ b/lineage-updater @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import os import sys @@ -63,7 +63,7 @@ def args_parse(): return args def file_hash(pathname): - f = open(pathname) + f = open(pathname, 'rb') buf = f.read() f.close() hasher = hashlib.sha1()