From 93c6b1c572760438b9253792deb37b18231fe615 Mon Sep 17 00:00:00 2001 From: russellballestrini Date: Sat, 14 Oct 2017 20:13:21 -0400 Subject: [PATCH] changed ago.py --- ago.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ago.py b/ago.py index 455317e..b7acec4 100644 --- a/ago.py +++ b/ago.py @@ -56,7 +56,7 @@ def human(subject, precision=2, past_tense='{} ago', future_tense='in {}', abbre if count >= precision: break # met precision if d[ unit ] == 0: continue # skip 0's if abbreviate: - abr = 'ms' if unit == 'microsecond' else unit[0] + abr = 'mu' if unit == 'microsecond' else unit[0] hlist.append('{}{}'.format(d[unit], abr)) else: s = '' if d[ unit ] == 1 else 's' # handle plurals