diff options
| author | Stefan | 2013-12-28 14:46:50 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-14 08:23:17 +0000 |
| commit | e4dceb956c6edea368cc3713423c6cd4bf7e45e8 (patch) | |
| tree | 54efccf85b29f8e10f4f8617ca28d1323a3433eb /Library | |
| parent | 17db9b07a001746b72f360ef3bc2199a125b5af2 (diff) | |
| download | homebrew-e4dceb956c6edea368cc3713423c6cd4bf7e45e8.tar.bz2 | |
gist logs: fix error message
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-gist-logs.rb | 2 |
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 |
