Skip to content
Snippets Groups Projects
Commit 3bf1f049 authored by Doucet, Mathieu's avatar Doucet, Mathieu
Browse files

Prettier output. Re #2586

parent e6a7bfa8
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ class BaseAbsoluteScale(ReductionStep):
"""
Do nothing since the scaling factor was set by hand
"""
return "Absolute scale factor:", self._scaling_factor
return "Absolute scale factor: %6.4g" % self._scaling_factor
class AbsoluteScale(BaseAbsoluteScale):
......@@ -116,7 +116,7 @@ class AbsoluteScale(BaseAbsoluteScale):
self._scaling_factor = 1.0/(det_count/timer/self._attenuator_trans/(monitor/timer)*(pixel_size/sdd)*(pixel_size/sdd))
return "Absolute scale factor:", self._scaling_factor
return "Absolute scale factor: %6.4g" % self._scaling_factor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment