Changeset 86
- Timestamp:
- 04.12.2006 16:11:37 (2 years ago)
- Files:
-
- trunk/devel/FuzzyOcr/Scanset.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/devel/FuzzyOcr/Scanset.pm
r76 r86 29 29 my $stdin = undef; 30 30 my $stdout = undef; 31 my $args = $self->{args};32 31 my $rcmd = $self->{command}; 33 32 … … 37 36 $rcmd = $conf->{$t} if defined $conf->{$t}; 38 37 } 39 40 $rcmd .= ' ' . $args; 38 if (defined $self->{args}) { 39 $rcmd .= ' ' . $self->{args}; 40 } 41 41 42 42 # First, run all preprocessors 43 43 my $preprocessors = $self->{preprocessors}; 44 if ($preprocessors) {44 if ($preprocessors) { 45 45 $preprocessors =~ s/ //g; 46 46 my @prep = split(',', $preprocessors);
