aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/language/python.rb
diff options
context:
space:
mode:
authorMartin Afanasjew2016-07-09 11:58:43 +0200
committerMartin Afanasjew2016-07-09 11:58:43 +0200
commit4f2e31b3e3ef3ab4758e3ac3c22dafd190652d5d (patch)
tree14419e45d78eabf0c965c32a6fb20234f7d72eeb /Library/Homebrew/language/python.rb
parent2c792076dc58e871bb7cd2a4cb4d03c39770497d (diff)
downloadbrew-4f2e31b3e3ef3ab4758e3ac3c22dafd190652d5d.tar.bz2
language/python: fix bogus require
Including the extension is not an error, but we don't normally do this.
Diffstat (limited to 'Library/Homebrew/language/python.rb')
-rw-r--r--Library/Homebrew/language/python.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/language/python.rb b/Library/Homebrew/language/python.rb
index c396230c0..646e2ac38 100644
--- a/Library/Homebrew/language/python.rb
+++ b/Library/Homebrew/language/python.rb
@@ -1,4 +1,4 @@
-require "utils.rb"
+require "utils"
module Language
module Python