From 255a36c2806f42ad96538d7a456fe020de708b13 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Thu, 31 Aug 2017 15:00:21 -0700 Subject: [PATCH] [hotfix] user dashboard says '150 weeks' (#3403) --- superset/viz.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/superset/viz.py b/superset/viz.py index b7f1e6346e..3f973c7ed9 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -148,9 +148,8 @@ class BaseViz(object): # Backward compatibility hack since_words = since.split(' ') - if ( - len(since_words) == 2 and - since_words[1] in ['days', 'years', 'hours', 'day', 'year']): + grains = ['days', 'years', 'hours', 'day', 'year', 'weeks'] + if (len(since_words) == 2 and since_words[1] in grains): since += ' ago' from_dttm = utils.parse_human_datetime(since)