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

@ -1,3 +1,7 @@
2010-06-20 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_03
* Fix silly type in code/tests
2010-06-19 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_02
* Add in bugtracker and homepage resources to Build.PL file

View file

@ -15,7 +15,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: 4.00_02
version: 4.00_03
requires:
Locale::Maketext: 0
Tk: 800.022
@ -28,4 +28,4 @@ resources:
repository:
- http://clusterssh.git.sourceforge.net/
- http://github.com/duncs/clusterssh
version: 4.00_02
version: 4.00_03

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;