summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index cf63396..d3521ec 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -52,8 +52,8 @@ def copytree(src, dst):
dot_dotdot = '.', '..'
for name in names:
if name not in dot_dotdot:
- srcname = path.cat(src, name)
- dstname = path.cat(dst, name)
+ srcname = path.join(src, name)
+ dstname = path.join(dst, name)
#print 'Copying', srcname, 'to', dstname
try:
#if path.islink(srcname):