summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-xLib/uu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index 2ee336c..f591798 100755
--- a/Lib/uu.py
+++ b/Lib/uu.py
@@ -52,7 +52,7 @@ def encode(in_file, out_file, name=None, mode=None):
name = os.path.basename(in_file)
if mode is None:
try:
- mode = os.stat(in_file)[0]
+ mode = os.stat(in_file).st_mode
except AttributeError:
pass
in_file = open(in_file, 'rb')