diff options
author | Rene Engelhard <rene@debian.org> | 2015-06-14 19:38:59 +0200 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2015-06-14 19:56:46 +0200 |
commit | c0aacd16604548e12d09ca189bb197d0cf5c1afe (patch) | |
tree | 1854f3761aa343937089b42e0dd5dfb79f388076 /bin | |
parent | 3588a04f438b001cb64aa1fd86b28869f2c4e70b (diff) |
deb#788713: fix (fatal) perl deprecation in lo-xlate-lang
Change-Id: I82c63358d9400b2c8bd391a88bba18ffae52a14b
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/lo-xlate-lang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lo-xlate-lang b/bin/lo-xlate-lang index b7a28793b171..c54f3790edc3 100755 --- a/bin/lo-xlate-lang +++ b/bin/lo-xlate-lang @@ -102,7 +102,7 @@ if ($LanguageCode =~ (m/^all$/)) { } usage ("no mapping found for $LanguageCode\n",1) - if (!(%$LanguageMap->{$LanguageCode})); + if (!($LanguageMap->{$LanguageCode})); print $LanguageMap->{$LanguageCode}, "\n"; |