Bug 1281516 - Correct the spelling of 'unknown' (#1612) r=emorley

This commit is contained in:
KWierso 2016-06-22 18:08:51 +01:00 коммит произвёл GitHub
Родитель 0fd6cb17d5
Коммит 3926d546b5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -70,8 +70,8 @@ def do_job_ingestion(jm, job_data, sample_resultset, verify_data=True):
machine_platforms_ref.add( machine_platforms_ref.add(
"-".join([ "-".join([
job.get('machine_platform', {}).get('os_name', 'unkown'), job.get('machine_platform', {}).get('os_name', 'unknown'),
job.get('machine_platform', {}).get('platform', 'unkown'), job.get('machine_platform', {}).get('platform', 'unknown'),
job.get('machine_platform', {}).get('architecture', 'unknown') job.get('machine_platform', {}).get('architecture', 'unknown')
])) ]))