bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282)

This commit is contained in:
Timo Furrer 2019-01-17 15:15:53 +01:00 committed by Berker Peksag
parent f1d8e7cf17
commit 17f05bbc78
3 changed files with 22 additions and 4 deletions

View file

@ -133,10 +133,7 @@ def decode(in_file, out_file=None, mode=None, quiet=False):
out_file = sys.stdout.buffer
elif isinstance(out_file, str):
fp = open(out_file, 'wb')
try:
os.path.chmod(out_file, mode)
except AttributeError:
pass
os.chmod(out_file, mode)
out_file = fp
opened_files.append(out_file)
#