moving config into else clause for cleanliness
[migration-tools.git] / text / csv2sql
index 37a136d..9ee8203 100755 (executable)
@@ -14,11 +14,11 @@ my $cfg;
 my $csv_config;
 
 sub init {
-       our %config;
     if ($PGHOST and $PGPORT and $PGUSER and $PGDATABASE) 
     {
         $dbh = connect_db($PGDATABASE,$PGUSER,undef,$PGHOST) or die $DBI::errstr;
     } else {
+        our %config;
         do '/openils/conf/offline-config.pl';
         $dbh = DBI->connect( $config{dsn}, $config{usr}, $config{pw} ) or die $DBI::errstr;
     }