fix typo in variable name

This commit is contained in:
Frédéric Péters 2020-06-15 23:26:46 +02:00
parent de529a11e6
commit d87b09c43a
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def smart_cleaning(files_path):
project_files = {}
for file_path in files_path:
project_name = os.path.basename(file_path).split('_')[0]
if projet_name not in project_files:
if project_name not in project_files:
project_files[project_name] = []
project_files[project_name].append(file_path)