Explorar el Código

Add the message about resampling

Signed-off-by: Vadim Markovtsev <vadim@sourced.tech>
Vadim Markovtsev hace 6 años
padre
commit
5eba6dd334
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      labours.py

+ 1 - 0
labours.py

@@ -495,6 +495,7 @@ def load_burndown(header, name, matrix, resample):
     print(name, "lifetime index:", calculate_average_lifetime(matrix))
     finish = start + timedelta(days=matrix.shape[1] * sampling)
     if resample not in ("no", "raw"):
+        print("resampling to %s, please wait..." % resample)
         # Interpolate the day x day matrix.
         # Each day brings equal weight in the granularity.
         # Sampling's interpolation is linear.