Skip to content

Commit

Permalink
fixed an error in load_userdict()
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilbert Liu committed May 1, 2015
1 parent 60f0028 commit f6e57ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jieba/__init__.py
Expand Up @@ -331,7 +331,7 @@ def load_userdict(f):
tup = line.split(" ")
add_word(*tup)
except Exception as e:
logger.debug('%s at line %s %s' % (f_name, lineno, line))
logger.debug('%s at line %s %s' % (f.name, line_no, line))
raise e


Expand Down

0 comments on commit f6e57ab

Please sign in to comment.