diff options
| author | Stefan | 2013-12-28 14:46:50 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-14 08:23:17 +0000 |
| commit | 2f679153ee6c77ee1248047dad37d4070dd5f021 (patch) | |
| tree | 443c9275d34ad73546ba24e92cbaa18add3e61da /Library | |
| parent | 8f89db4882d166784236adee3291f8d529f11772 (diff) | |
| download | brew-2f679153ee6c77ee1248047dad37d4070dd5f021.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 |
