| Index: recipe_modules/raw_io/api.py
|
| diff --git a/recipe_modules/raw_io/api.py b/recipe_modules/raw_io/api.py
|
| index bf755399326de05a677a01fe05db62548d0a427c..15c65e6aa769deef42a2cc63bee1c322e07fb9a8 100644
|
| --- a/recipe_modules/raw_io/api.py
|
| +++ b/recipe_modules/raw_io/api.py
|
| @@ -138,7 +138,7 @@ class OutputDataDirPlaceholder(recipe_util.OutputPlaceholder):
|
| self._backing_dir = str(self.leak_to)
|
| if not test.enabled: # pragma: no cover
|
| if not os.path.exists(self._backing_dir):
|
| - os.mkdir(self._backing_dir)
|
| + os.makedirs(self._backing_dir)
|
| else:
|
| if not test.enabled: # pragma: no cover
|
| self._backing_dir = tempfile.mkdtemp(suffix=self.suffix)
|
|
|