From f5fc022aa6accee2b6fb37c11859fbcf2409cd07 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 13 Jun 2012 14:03:36 -0400 Subject: [PATCH] Fix temerature_group -> temperature_group typo in analyze_all(). Introduced by: commit 560f9f94abbdf396b9f624e03bdb2a1f6d840bd1 Author: W. Trevor King Date: Fri Mar 16 10:02:37 2012 -0400 Get calibcant working with the new load_from_config-based pyafm. --- calibcant/analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calibcant/analyze.py b/calibcant/analyze.py index 38f9f15..b1a8d44 100644 --- a/calibcant/analyze.py +++ b/calibcant/analyze.py @@ -261,7 +261,7 @@ def analyze_all(config, data, raw_data, maximum_relative_error=1e-5, temperature_group = _h5_create_group( group, 'temperature/{}'.format(i)) _temperature_save( - group=temerature_group, processed=data['temperature'][i]) + group=temperature_group, processed=data['temperature'][i]) if len(data.get('raw', {}).get('vibration', []) ) != len(data['vibration']): vibrations_changed = True -- 2.26.2