1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

daq: fixed typo

This commit is contained in:
Sergei Trofimov 2015-12-15 09:54:21 +00:00
parent 438e18328d
commit 62a0fd70de

View File

@ -303,7 +303,7 @@ class Daq(Instrument):
except ConfigurationError, ex:
raise ConfigError('DAQ configuration: ' + ex.message) # Re-raise as a WA error
self.grouped_suffixes = defaultdict(str)
if isinstance(self.merge_chnnels, bool):
if isinstance(self.merge_channels, bool):
if self.merge_channels:
# Create a dict of potential prefixes and a list of their suffixes
grouped_suffixes = {label[:-1]: label for label in sorted(self.labels) if len(label) > 1}