If you still want the 2nd line then use this:
add_filter('tc_credits_display', 'my_custom_credits');
function my_custom_credits(){
$newline_credits = '<a href="<YOURLINK HERE>">Contact Us</a>';
return '
<div class="span4 credits">
<p> © '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a>'.($newline_credits ? '<br />'.$newline_credits.'' : '').'</p> </div>';
}