From f8efb6a9d851a149d7eb1d82b9a0e8fc3066cd02 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 12 Jul 2012 18:14:42 -0400 Subject: [PATCH] Remove unnecessary line wrap in analyze_surface_position_data logging. --- pypiezo/surface.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pypiezo/surface.py b/pypiezo/surface.py index 57a4eb8..3d59cf2 100644 --- a/pypiezo/surface.py +++ b/pypiezo/surface.py @@ -183,8 +183,7 @@ def analyze_surface_position_data( # start_def and start_pos are probably for 2 different points _LOG.info('min deflection {}, max deflection {}'.format( start_def, final_def)) - _LOG.info('min position {}, max position {}'.format( - start_pos, final_pos)) + _LOG.info('min position {}, max position {}'.format(start_pos, final_pos)) left_offset = start_def left_slope = 0 -- 2.26.2