diff imagej2_base_utils.py @ 5:e16d8e6654a6 draft

planemo upload commit 378c3ecfbaed0330faf197811d379431b0f9e92c-dirty
author iuc
date Sun, 11 Oct 2015 13:30:37 -0400
parents 48f25b8408e1
children 74b6dd718fef
line wrap: on
line diff
--- a/imagej2_base_utils.py	Wed Aug 26 14:37:18 2015 -0400
+++ b/imagej2_base_utils.py	Sun Oct 11 13:30:37 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