This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=aea951ca62fba38b8ce53e26db802a42304e0c27 commit aea951ca62fba38b8ce53e26db802a42304e0c27 Author: Guillem Jover <guil...@debian.org> AuthorDate: Tue Aug 28 02:33:52 2018 +0200 dselect: Rename $ans variable to $answer in multicd method This is detected by codespell as a spelling error. Just use the non-abbreviated form to make it more clear and stop triggering codespell. Warned-by: codespell --- dselect/methods/multicd/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dselect/methods/multicd/install b/dselect/methods/multicd/install index 577348075..e4d772c6a 100755 --- a/dselect/methods/multicd/install +++ b/dselect/methods/multicd/install @@ -295,8 +295,8 @@ done if ($?) { print "\nThe dpkg run produced errors. Please tell me, if I should\n", "continue with the next CD. [Y/n]: "; - $ans = <STDIN>; - exit 1 if $ans =~ /^n/i; + $answer = <STDIN>; + exit 1 if $answer =~ /^n/i; $ouch = $?; } } -- Dpkg.Org's dpkg