Skip to content

Instantly share code, notes, and snippets.

@celadevra
Created May 27, 2012 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save celadevra/2802480 to your computer and use it in GitHub Desktop.
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
1c31
< @library = find_python_lib
---
> @library = 'python2'
126c126
< %x(#{@python} -c "#{command}").chomp if @python
---
> %x("#{@python} -c #{command}").chomp if @python
@celadevra
Copy link
Author

And by "newer" I mean Python 2.7. Python 3.x is still not supported.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment