- fix installation for empty directories. and get rid of install/ directory in /...

This commit is contained in:
Barış Metin
2005-09-23 13:38:07 +00:00
parent ffd9fe2047
commit 89f39b7f00
+1 -1
View File
@@ -147,7 +147,7 @@ class ArchiveZip(ArchiveBase):
if is_dir: # this is a directory
try: # To get rid of Error:[Errno 17] File exists: errors
os.makedirs(os.path.join(target_dir, info.filename))
os.makedirs(os.path.join(target_dir, outpath))
except OSError:
pass
continue