diff -r a1044ae95953 -r a910102a1c9d URLUtils.m --- a/URLUtils.m Wed Jul 16 10:50:34 2008 -0700 +++ b/URLUtils.m Tue Apr 07 11:13:25 2009 -0700 @@ -75,8 +75,7 @@ // HTTP status >= 300 is considered an error: int status = self.statusCode; if( status >= 300 ) { - NSString *reason = NSLocalizedStringFromTable( @"HTTP_ERROR_MESSAGE",@"UKCrashReporter",@""); - reason = [NSHTTPURLResponse localizedStringForStatusCode: status]; + NSString *reason = [NSHTTPURLResponse localizedStringForStatusCode: status]; NSDictionary *info = $dict({NSLocalizedFailureReasonErrorKey,reason}); return [NSError errorWithDomain: MyHTTPErrorDomain code: status userInfo: info]; } else