aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-08 13:01:25 -0700
committerAdam Vandenberg2013-08-08 13:01:25 -0700
commitd8559ec58896513cd93d79b8810a92fd846d55a5 (patch)
tree0fe2c54babbd4901f5009ac0862dfdd87b33c8b5 /Library/Formula
parent4b3d30474e3cfc56c43110b2e9905ddd0e2c6ce0 (diff)
downloadhomebrew-d8559ec58896513cd93d79b8810a92fd846d55a5.tar.bz2
python + python3: fix typo
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/python.rb2
-rw-r--r--Library/Formula/python3.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb
index 809036484..076252704 100644
--- a/Library/Formula/python.rb
+++ b/Library/Formula/python.rb
@@ -145,7 +145,7 @@ class Python < Formula
Setuptools.new.brew { system py.binary, *setup_args }
Pip.new.brew { system py.binary, *setup_args }
- # And now we write the distuitsl.cfg
+ # And now we write the distutils.cfg
cfg = prefix/"Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/distutils.cfg"
cfg.delete if cfg.exist?
cfg.write <<-EOF.undent
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index cde69dad5..96a0e27cd 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -158,7 +158,7 @@ class Python3 < Formula
Pip.new.brew { system py.binary, *setup_args }
mv bin/'pip', bin/'pip3'
- # And now we write the distuitsl.cfg
+ # And now we write the distutils.cfg
cfg = prefix/"Frameworks/Python.framework/Versions/#{VER}/lib/python#{VER}/distutils/distutils.cfg"
cfg.delete if cfg.exist?
cfg.write <<-EOF.undent