mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-22 01:12:24 +00:00
Fix silly typo in code
No idea why everything passed last night but didn't this morning. Oh well.
This commit is contained in:
parent
9d80bf848f
commit
c3b04b22ec
3 changed files with 8 additions and 4 deletions
4
Changes
4
Changes
|
@ -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
|
||||
|
|
4
META.yml
4
META.yml
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue