diff --git a/lmfit/printfuncs.py b/lmfit/printfuncs.py index c5b1cf62f..59492af14 100644 --- a/lmfit/printfuncs.py +++ b/lmfit/printfuncs.py @@ -12,7 +12,7 @@ def alphanumeric_sort(s, _nsre=re.compile('([0-9]+)')): for text in re.split(_nsre, s)] -def getfloat_attr(obj, attr, fmt='%.3f'): +def getfloat_attr(obj, attr, fmt='%.5f'): """Format an attribute of an object for printing.""" val = getattr(obj, attr, None) if val is None: