Skip to content

Commit

Permalink
fix/features: another typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wehlutyk committed Mar 15, 2017
1 parent ebfea88 commit 867894f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions brainscopypaste/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ def _get_clearpond():
for row in reader:
word = row[0].lower()
if word in clearpond_phonological:
raise Exception("'{}' is already is Clearpond phonological "
'dictionary'.format(word))
raise Exception("'{}' is already in the Clearpond "
'phonological dictionary'.format(word))
if word in clearpond_orthographic:
raise Exception("'{}' is already is Clearpond orthographic "
'dictionary'.format(word))
raise Exception("'{}' is already in the Clearpond "
'orthographic dictionary'.format(word))
clearpond_orthographic[word] = int(row[5])
clearpond_phonological[word] = int(row[29])
return {'orthographic': clearpond_orthographic,
Expand Down

0 comments on commit 867894f

Please sign in to comment.