Fix typo in files_manager.py

Change-Id: If44563c23ec44fe75f2f6ff5c9de92bd396ec1bb
This commit is contained in:
Ekaterina Chernova 2015-03-18 15:21:27 +03:00
parent 85a3d1efb0
commit fdc8de63fe
1 changed files with 3 additions and 3 deletions

View File

@ -23,12 +23,12 @@ CONF = config.CONF
class FilesManager(object):
def __init__(self, execution_pan):
def __init__(self, execution_plan):
self._fetched_files = {}
self._files = execution_pan.get('Files') or {}
self._files = execution_plan.get('Files') or {}
self._cache_folder = os.path.join(
CONF.storage, 'files', execution_pan.ID)
CONF.storage, 'files', execution_plan.ID)
if os.path.exists(self._cache_folder):
self.clear()
os.makedirs(self._cache_folder)