diff options
| author | Jack Nagel | 2012-08-13 10:01:49 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-08-13 10:01:49 -0500 |
| commit | e1831e46f52d86e6546bd6ea058a3cdc0ecc29bc (patch) | |
| tree | 9eecda9c5046f2404b50fc7c60a08d58d0bdd9ca /Library/Formula | |
| parent | 372f46712465cdb43598e06b4cf7b9601df3ac99 (diff) | |
| download | homebrew-e1831e46f52d86e6546bd6ea058a3cdc0ecc29bc.tar.bz2 | |
python3: fix typo
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/python3.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index edd30fdbe..052cd2772 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -113,7 +113,7 @@ class Python3 < Formula ln_s "#{bin}/python3.2", "#{bin}/python3" unless (bin/"python3").exist? # Python 2 has a 2to3, too. (https://github.com/mxcl/homebrew/issues/12581) - rm bin/"2to3" if (HOMEBREW_PREFIX/bin/"2to3").exist? + rm bin/"2to3" if (HOMEBREW_PREFIX/"bin/2to3").exist? # Tell distutils-based installers where to put scripts scripts_folder.mkpath |
