debian/templates/patch.apply.in: Correctly define false value.

svn path=/dists/trunk/linux-2.6/; revision=10936
This commit is contained in:
Bastian Blank 2008-03-22 12:48:54 +00:00
parent d119386ec6
commit 88f80f09eb
1 changed files with 3 additions and 0 deletions

View File

@ -49,6 +49,9 @@ class MatchExtra(object):
return ret_arch and ret_featureset
def __nonzero__(self):
return self.arch is not None or self.featureset is not None
def info(self):
ret = []
if self.matched_arch: