Remove a now-unnecessary "if os.path.exists()"

This commit is contained in:
Ed Brannin 2017-03-10 13:17:52 -05:00
parent b7b82578be
commit 68350691b6
1 changed files with 1 additions and 2 deletions

View File

@ -358,8 +358,7 @@ class _Cache:
tree = tree or (yield from self.get_empty_tree())
previous_tree = previous_tree or (yield from self.get_empty_tree())
if not os.path.exists(dest):
makedirs(dest)
makedirs(dest)
with contextlib.ExitStack() as stack: