summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-10-04 16:36:53 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-10-04 16:36:53 (GMT)
commit5a49ffca5e229b087bea31f378420ea4c9868dea (patch)
treedeac1ba9e704f0c1541532526701303228261a12 /Lib
parent685e16d7d64a75a3703f25888d3f192ad5c25f70 (diff)
downloadcpython-5a49ffca5e229b087bea31f378420ea4c9868dea.zip
cpython-5a49ffca5e229b087bea31f378420ea4c9868dea.tar.gz
cpython-5a49ffca5e229b087bea31f378420ea4c9868dea.tar.bz2
Fixed two minor errors.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/uu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index 2341bbd..5644803 100755
--- a/Lib/uu.py
+++ b/Lib/uu.py
@@ -43,10 +43,10 @@ def encode(in_file, out_file, name=None, mode=None):
in_file = sys.stdin
elif type(in_file) == type(''):
if name == None:
- name = basename(in_file)
+ name = os.path.basename(in_file)
if mode == None:
try:
- mode = os.path.stat(in_file)[0]
+ mode = os.stat(in_file)[0]
except AttributeError:
pass
in_file = open(in_file, 'rb')