Created
October 27, 2014 15:07
-
-
Save nosada/b4dcee1e928f8cea2032 to your computer and use it in GitHub Desktop.
patch for mecab-python-0.996/setup.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- setup.py.orig 2014-10-27 23:13:54.149118580 +0900 | |
+++ setup.py 2014-10-27 23:32:14.945120395 +0900 | |
@@ -7,7 +7,7 @@ | |
return os.popen(str).readlines()[0][:-1] | |
def cmd2(str): | |
- return string.split (cmd1(str)) | |
+ return cmd1(str).split() | |
setup(name = "mecab-python", | |
version = cmd1("mecab-config --version"), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment