Fix path to grass descriptions in processing2ui script

This commit is contained in:
Nyall Dawson 2023-12-08 12:04:44 +10:00
parent b757ca0770
commit 3bd7b74ee8

View File

@ -35,7 +35,7 @@ die "directory $ARGV[0] not found" unless -d $ARGV[0];
my %strings;
for my $f (<python/plugins/processing/algs/grass*/description/*.txt>) {
for my $f (<python/plugins/grassprovider/description/*.txt>) {
open I, $f;
binmode(I, ":utf8");
my $name = scalar(<I>);