contrib/i18n-scan.pl: fix indentation

This commit is contained in:
Jan-Niklas Burfeind 2022-12-16 23:41:53 +01:00
parent 6992a3d1ac
commit 46d6bf8304
2 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,8 @@ indent_size = 2
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
[*.pl]
[*.py] [*.py]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4

View File

@ -79,7 +79,7 @@ if( open F, "find @ARGV -type f '(' -name '*.html' -o -name '*.lua' ')' |" )
{ {
my $stag = quotemeta $1; my $stag = quotemeta $1;
my $etag = $stag; my $etag = $stag;
$etag =~ s/\[/]/g; $etag =~ s/\[/]/g;
( $res ) = extract_tagged($code, $stag, $etag); ( $res ) = extract_tagged($code, $stag, $etag);