changeset 24394:f997aa4be0ce

get_description.m: Fix quote character error introduced in b1d1229d9e83 (bug #52639). * get_description.m: Close quote started with ' with another '.
author Rik <rik@octave.org>
date Mon, 11 Dec 2017 08:51:12 -0800
parents a7bc68ce08f1
children 41cf6ee90cb6
files scripts/pkg/private/get_description.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/pkg/private/get_description.m	Sat Dec 09 11:50:19 2017 +0100
+++ b/scripts/pkg/private/get_description.m	Mon Dec 11 08:51:12 2017 -0800
@@ -56,7 +56,7 @@
                     keyword, desc.name);
         endif
         if (isfield (desc, keyword))
-          warning ('pkg: duplicate keyword "%s" in DESCRIPTION, ignoring",
+          warning ('pkg: duplicate keyword "%s" in DESCRIPTION, ignoring',
                    keyword);
         else
           desc.(keyword) = value;