[fix] weight configurable via engines.cfg

This commit is contained in:
asciimoo 2014-01-18 21:55:42 +01:00
parent 046e190721
commit 39ebe1d519
1 changed files with 0 additions and 2 deletions

View File

@ -118,8 +118,6 @@ def score_results(results):
weight = 1.0
if hasattr(engines[res['engine']], 'weight'):
weight = float(engines[res['engine']].weight)
elif res['engine'] in settings.weights:
weight = float(settings.weights[res['engine']])
score = int((flat_len - i)/engines_len)*weight+1
duplicated = False
for new_res in results: