Fix silly typo in code

No idea why everything passed last night but didn't this morning.  Oh well.
This commit is contained in:
Duncan Ferguson 2010-06-19 08:44:07 +01:00
parent 9d80bf848f
commit c3b04b22ec
3 changed files with 8 additions and 4 deletions

View file

@ -3,7 +3,7 @@ package App::ClusterSSH;
use 5.008.004;
use warnings;
use strict;
use version; our $VERSION = version->new('4.00_02');
use version; our $VERSION = version->new('4.00_03');
use Carp;
@ -376,7 +376,7 @@ sub check_config() {
$config{internal_previous_state} = ""; # set to default
# option font overrides config file font setting
config{terminal_font} = $options{font} if ( $options{font} );
$config{terminal_font} = $options{font} if ( $options{font} );
get_font_size();
$config{extra_cluster_file} =~ s/\s+//g;