Skip to content

Commit

Permalink
fix a bug about can not import ChineseAnalyzer with change tab to 4 w…
Browse files Browse the repository at this point in the history
…ihte spaces under PEP8
  • Loading branch information
Honghe Wu committed Feb 15, 2014
1 parent cc708de commit 7720fbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jieba/analyse/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import jieba
import os
try:
from analyzer import ChineseAnalyzer
from analyzer import ChineseAnalyzer
except ImportError:
pass
pass

_curpath=os.path.normpath( os.path.join( os.getcwd(), os.path.dirname(__file__) ) )
f_name = os.path.join(_curpath,"idf.txt")
Expand Down

0 comments on commit 7720fbc

Please sign in to comment.