diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-02-09 00:37:23 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-02-09 00:38:22 +0100 |
commit | 104119618af6d130de8c68b5ee94d5d8ea02f510 (patch) | |
tree | 7b2c43a7cbf8aa1521d29a247cb246dc9722deed /perl-install | |
parent | fe1fff1dc82d008a6b811513a1809f379ea5a0b9 (diff) | |
download | drakx-104119618af6d130de8c68b5ee94d5d8ea02f510.tar drakx-104119618af6d130de8c68b5ee94d5d8ea02f510.tar.gz drakx-104119618af6d130de8c68b5ee94d5d8ea02f510.tar.bz2 drakx-104119618af6d130de8c68b5ee94d5d8ea02f510.tar.xz drakx-104119618af6d130de8c68b5ee94d5d8ea02f510.zip |
fix not enough parameter catch by perl_checker
defect introduced in commit fd75d4a8b1ee8805beb0a7627a084d2b5a201b3b
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/harddrake/sound.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index 68bc108cc..c64efd6bf 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -140,7 +140,7 @@ sub config { } elsif ($in->ask_from_({ title => N("Sound configuration"), messages => $device->{description} . - "\n\n" . N("Your card uses the %s\"%s\" driver", $driver), + "\n\n" . N("Your card uses the \"%s\" driver", $driver), }, \@common, )) |