summaryrefslogtreecommitdiff
path: root/gi/evaluation/entropy.py
diff options
context:
space:
mode:
authortrevor.cohn <trevor.cohn@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-20 21:54:01 +0000
committertrevor.cohn <trevor.cohn@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-20 21:54:01 +0000
commit1df659069fe9d3d56a3c33802f011dfa3186d7d4 (patch)
treee2fbf2219c9ff8e84c0ee0260e60ea3fb6190f93 /gi/evaluation/entropy.py
parente350d445a6a65ff1fa759911a785775b3152952f (diff)
fixed typo
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@343 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'gi/evaluation/entropy.py')
-rw-r--r--gi/evaluation/entropy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gi/evaluation/entropy.py b/gi/evaluation/entropy.py
index cef0dbb4..ec1ef502 100644
--- a/gi/evaluation/entropy.py
+++ b/gi/evaluation/entropy.py
@@ -26,8 +26,8 @@ for line in infile:
tag = part.split(':',1)[1]
if slash_threshold == None or tag.count('/') + tag.count('\\') <= slash_threshold:
- frequencies.setdefault(gtag, 0)
- frequencies[gtag] += 1
+ frequencies.setdefault(tag, 0)
+ frequencies[tag] += 1
N += 1
h = 0