From: Brian Warner Date: Thu, 1 Nov 2007 22:25:20 +0000 (-0700) Subject: trailing-whitespace eradication, no functional changes X-Git-Tag: allmydata-tahoe-0.7.0~322 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=fb59627faa52ae066fb85af33fcc670bab04b763;p=tahoe-lafs%2Ftahoe-lafs.git trailing-whitespace eradication, no functional changes --- diff --git a/src/allmydata/util/mathutil.py b/src/allmydata/util/mathutil.py index afcb3121..b95dbaa8 100644 --- a/src/allmydata/util/mathutil.py +++ b/src/allmydata/util/mathutil.py @@ -45,7 +45,7 @@ def next_power_of_k(n, k): return k**(x+1) else: return k**x - + def ave(l): return sum(l) / len(l)