Try this code (taken from Twenty Eleven WordPress theme). Should work fine.
<title><?php
wp_title('|', true, 'right');
bloginfo('name');
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
?></title>