commit efd2c9d05b3ef0f2b6b29a89056560bb80454d6f Author: teor (Tim Wilson-Brown) teor2345@gmail.com Date: Mon Jan 18 12:35:58 2016 +1100
Fix a display issue in updateFallbackDirs.py output --- scripts/maint/updateFallbackDirs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/maint/updateFallbackDirs.py b/scripts/maint/updateFallbackDirs.py index 5c9b320..fd7d350 100755 --- a/scripts/maint/updateFallbackDirs.py +++ b/scripts/maint/updateFallbackDirs.py @@ -1230,8 +1230,8 @@ def list_fallbacks(): max_weight = max_weight_fb.fallback_weight_fraction(total_weight) if max_weight > TARGET_MAX_WEIGHT_FRACTION: error_str = 'Maximum fallback weight: %.3f%% exceeds target %.3f%%. '%( - max_weight, - TARGET_MAX_WEIGHT_FRACTION) + max_weight*100.0, + TARGET_MAX_WEIGHT_FRACTION*100.0) error_str += 'Try decreasing REWEIGHTING_FUDGE_FACTOR.' if STRICT_FALLBACK_WEIGHTS: print '#error ' + error_str
tor-commits@lists.torproject.org