aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorStefan2013-12-28 14:46:50 +0100
committerMike McQuaid2014-01-14 08:23:17 +0000
commite4dceb956c6edea368cc3713423c6cd4bf7e45e8 (patch)
tree54efccf85b29f8e10f4f8617ca28d1323a3433eb /Library
parent17db9b07a001746b72f360ef3bc2199a125b5af2 (diff)
downloadhomebrew-e4dceb956c6edea368cc3713423c6cd4bf7e45e8.tar.bz2
gist logs: fix error message
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-gist-logs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-gist-logs.rb b/Library/Contributions/cmd/brew-gist-logs.rb
index 4a1e088e8..c94ccb7bf 100755
--- a/Library/Contributions/cmd/brew-gist-logs.rb
+++ b/Library/Contributions/cmd/brew-gist-logs.rb
@@ -80,7 +80,7 @@ end
class HTTP_Error < RuntimeError
def initialize response
- super "Error: HTTP #{response.code} #{response.message}"
+ super "HTTP #{response.code} #{response.message}"
end
end