diff imagej2_base_utils.py @ 4:378b454db348 draft

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