[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.5.5-1-gcc824de



The following commit has been merged in the master branch:
commit cc824deb3668bc9eacb23bc7bbbb9df0844abba6
Author: Niels Thykier <niels@thykier.net>
Date:   Fri Feb 24 09:42:30 2012 +0100

    L::Tag::Info: Fix handling of "Experimental: no"
    
    Signed-off-by: Niels Thykier <niels@thykier.net>

diff --git a/debian/changelog b/debian/changelog
index 6521e97..23f80ea 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+lintian (2.5.6) UNRELEASED; urgency=low
+
+  * lib/Lintian/Tag/Info.pm:
+    + [NT] Fixed issue where "Experimental: no" was handled as a
+      "yes" when generating a tag description.
+
+ -- Niels Thykier <niels@thykier.net>  Fri, 24 Feb 2012 09:40:30 +0100
+
 lintian (2.5.5) unstable; urgency=low
 
   The "Policy 3.9.3" release.
diff --git a/lib/Lintian/Tag/Info.pm b/lib/Lintian/Tag/Info.pm
index e69bea3..8b1f91c 100644
--- a/lib/Lintian/Tag/Info.pm
+++ b/lib/Lintian/Tag/Info.pm
@@ -270,7 +270,7 @@ sub description {
         my $stype = $self->{'script-type'};
         push(@text, '', "Check: $script, Type: $stype");
     }
-    if ($self->{experimental}) {
+    if ($self->experimental) {
         push(@text, '',
              'This tag is marked experimental, which means that the code that'
              . ' generates it is not as well-tested as the rest of Lintian'

-- 
Debian package checker


Reply to: