Ignore:
Timestamp:
2005-04-18T13:18:39+12:00 (19 years ago)
Author:
mdewsnip
Message:

Improvement to previous change so "file not processed" messages are seen in Expert mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/ImagePlug.pm

    r9585 r9703  
    381381        print STDERR "<ProcessingError n='$file' r='Windows 95/98 not supported'>\n";
    382382    }
    383     else {
    384         print $outhandle "ImagePlug: Windows 95/98 not supported\n";
    385     }
     383    print $outhandle "ImagePlug: Windows 95/98 not supported\n";
    386384    return -1;
    387385    }
     
    392390        print STDERR "<ProcessingError n='$file' r='ImageMagick not installed'>\n";
    393391    }
    394     else {
    395         print $outhandle "ImagePlug: ImageMagick not installed\n";
    396     }
     392    print $outhandle "ImagePlug: ImageMagick not installed\n";
    397393    return -1;
    398394    }
     
    414410        print STDERR "<ProcessingError n='$file'>\n";
    415411    }
    416     else {
    417         print $outhandle "ImagePlug: couldn't process \"$filename\"\n";
    418     }
     412    print $outhandle "ImagePlug: couldn't process \"$filename\"\n";
    419413    return -1; # error during processing
    420414    }
Note: See TracChangeset for help on using the changeset viewer.