diff imagej2_base_utils.py @ 1:ceda7272ae41 draft

planemo upload commit 378c3ecfbaed0330faf197811d379431b0f9e92c-dirty
author iuc
date Sun, 11 Oct 2015 13:29:52 -0400
parents 42e645a20a6e
children ef4de385bbde
line wrap: on
line diff
--- a/imagej2_base_utils.py	Wed Aug 26 14:36:27 2015 -0400
+++ b/imagej2_base_utils.py	Sun Oct 11 13:29:52 2015 -0400
@@ -154,7 +154,7 @@
         return ' None'
     else:
         if val_type == 'float':
-            return ' %.1f' % val
+            return ' %.3f' % val
         elif val_type == 'int':
             return ' %d' % val
     return ' %s' % val