cosmetic: dbg log fix in suite.py

Change-Id: I0ff92bc1aa05bf5020bbb3b6965cbb22f1ca4d61
This commit is contained in:
Neels Hofmeyr 2017-06-14 02:59:55 +02:00
parent 02a28e54a5
commit d28d1a789e
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@ def load_suite_scenario_str(suite_scenario_str):
def bts_obj(suite_run, conf):
bts_type = conf.get('type')
log.dbg(None, None, 'create BTS object', type=bts_type)
log.dbg('create BTS object', type=bts_type)
bts_class = resource.KNOWN_BTS_TYPES.get(bts_type)
if bts_class is None:
raise RuntimeError('No such BTS type is defined: %r' % bts_type)