diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 23:37:14 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 23:37:14 +0000 | 
| commit | be4f7e138591e94b0546296d8337ba2190d78402 (patch) | |
| tree | df1f9a6c6fa63526cbbf585255ef2e4d51da991b /lib/custodian/protocoltest | |
| parent | 67ba812adc4b05410a8fad72b0040e481e1f07e8 (diff) | |
  Return "false" rather than nil.  Just for neatness.
Diffstat (limited to 'lib/custodian/protocoltest')
| -rw-r--r-- | lib/custodian/protocoltest/http.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/custodian/protocoltest/http.rb b/lib/custodian/protocoltest/http.rb index 8de768d..475b335 100644 --- a/lib/custodian/protocoltest/http.rb +++ b/lib/custodian/protocoltest/http.rb @@ -131,7 +131,7 @@ module Custodian                @content = c.body_str              rescue Curl::Err::TimeoutError                @error = "Timed out fetching page." -              return nil +              return false              rescue => x                @error = "Exception: #{x}"                return false @@ -158,7 +158,7 @@ module Custodian          end          # -        #  Done? +        #  All done.          #          true        end | 
