From cb1ab164225c6b18524b880ef3411394eac18b8a Mon Sep 17 00:00:00 2001 From: Corollax Date: Mon, 6 Dec 2010 17:38:19 -0600 Subject: [PATCH] Change G->B for 10^9 Billion. Bah. --- util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.py b/util.py index 2171dd040..ceb42842c 100644 --- a/util.py +++ b/util.py @@ -33,7 +33,7 @@ def suffixizeAmount(val, lowest=-6, highest=9): Suffixes below lowest and above highest orders won't be used. """ if abs(val) >= 1000 and highest >= 3: - suffixmap = {3 : "k", 6 : "M", 9 : "G"} + suffixmap = {3 : "k", 6 : "M", 9 : "B"} # Start from highest possible suffix for key in sorted(suffixmap, reverse = True): # Find first suitable suffix and check if it's not above highest order