# HG changeset patch # User Jeff Hammel # Date 1321387177 28800 # Node ID d9b9c4599a3d4192ffeffef7265b93b32200764e # Parent 14c791d8db59205de3eb691f2a499d86ff5ec3bf use correct name diff -r 14c791d8db59 -r d9b9c4599a3d fetch.py --- a/fetch.py Tue Nov 15 11:57:32 2011 -0800 +++ b/fetch.py Tue Nov 15 11:59:37 2011 -0800 @@ -87,7 +87,7 @@ if os.path.exists(dest): assert os.path.isdir(dest), "Destination must be a directory" else: - os.mkdirs(dest) + os.makedirs(dest) if self.subpath: raise NotImplementedError("should extract only a subpath of a tarball but I haven't finished it yet") buffer = StringIO()