Created
May 27, 2012 06:45
-
-
Save celadevra/2802480 to your computer and use it in GitHub Desktop.
Make Octopress's rubypython 0.5.3 work with newer Python in Gentoo 12.0
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
1c31 | |
< @library = find_python_lib | |
--- | |
> @library = 'python2' | |
126c126 | |
< %x(#{@python} -c "#{command}").chomp if @python | |
--- | |
> %x("#{@python} -c #{command}").chomp if @python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And by "newer" I mean Python 2.7. Python 3.x is still not supported.