diff hgext/churn.py @ 9389:7cca980317c5

merge with crew-stable
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Wed, 26 Aug 2009 13:05:51 +0200
parents 1ef630452e0b f7968bba2307
children 637f2726ec7f
line wrap: on
line diff
--- a/hgext/churn.py	Sat Aug 22 19:40:15 2009 +0200
+++ b/hgext/churn.py	Wed Aug 26 13:05:51 2009 +0200
@@ -148,7 +148,8 @@
     sortkey = ((not opts.get('sort')) and (lambda x: -x[1]) or None)
     rate.sort(key=sortkey)
 
-    maxcount = float(max([v for k, v in rate]))
+    # Be careful not to have a zero maxcount (issue833)
+    maxcount = float(max([v for k, v in rate])) or 1.0
     maxname = max([len(k) for k, v in rate])
 
     ttywidth = util.termwidth()