Changeset 3281


Ignore:
Timestamp:
03/12/09 05:30:48 (3 years ago)
Author:
jquelin
Message:

fixing style (easier to review)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Config/Constants.pm

    r3280 r3281  
    5050 
    5151# 
    52 # my $dir = _fond_padre_config_dir(); 
     52# my $dir = _find_padre_config_dir(); 
    5353# 
    5454# find and return the config directory where padre should store its 
     
    7171 
    7272    # check if directory exists, create it otherwise 
    73     mkpath($confdir) or die "Cannot create config dir '$confdir' $!" 
    74         unless -e $confdir; 
     73    unless ( -e $confdir ) { 
     74        mkpath($confdir) or 
     75        die "Cannot create config dir '$confdir': $!"; 
     76    } 
    7577 
    7678    return $confdir; 
Note: See TracChangeset for help on using the changeset viewer.