Change the – WordPress from titlebar?

Thank you mysticalghoul.

This was the answer:

function custom_login_title( $login_title ) {
return str_replace(array( ' ‹', ' — WordPress'), array( ' •', ' what ever you want'),$login_title );
}
add_filter( 'login_title', 'custom_login_title' );