Specify encoding for "open()" functions

This commit is contained in:
Ivan Kravets
2021-08-28 13:10:07 +03:00
parent b9219a2b62
commit d819617d2b
28 changed files with 63 additions and 43 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ def is_container():
return True
if not os.path.isfile("/proc/1/cgroup"):
return False
with open("/proc/1/cgroup") as fp:
with open("/proc/1/cgroup", encoding="utf8") as fp:
return ":/docker/" in fp.read()