Remove unnecessary use of instance_eval

This commit is contained in:
Jack Nagel 2013-06-03 16:59:11 -05:00
parent ba0ce82b68
commit ef0920e01d

View File

@ -307,7 +307,7 @@ class Formula
def python(options={:allowed_major_versions => [2, 3]}, &block)
require 'python_helper'
self.instance_eval{ python_helper(options, &block) }
python_helper(options, &block)
end
# Explicitly only execute the block for 2.x (if a python 2.x is available)