1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 10:51:13 +01:00

utils/misc: Fix missing import

This commit is contained in:
Marc Bonnici 2018-03-13 15:16:08 +00:00 committed by setrofim
parent bf8c4a856a
commit f5ed4e317a

View File

@ -45,7 +45,8 @@ from devlib.utils.misc import (ABI_MAP, check_output, walk_modules,
normalize, convert_new_lines, get_cpu_mask, unique,
escape_quotes, escape_single_quotes, escape_double_quotes,
isiterable, getch, as_relative, ranges_to_list, memoized,
list_to_ranges, list_to_mask, mask_to_list, which)
list_to_ranges, list_to_mask, mask_to_list, which,
to_identifier)
check_output_logger = logging.getLogger('check_output')