From 1adfd7a51787b8d3ebce01b87d9243a3b73b2c7e Mon Sep 17 00:00:00 2001 From: Pyry Haulos Date: Wed, 16 Nov 2016 10:17:26 -0800 Subject: [PATCH] Fix typo in check_license.py error message Change-Id: Id1d0ec96e8b81cb434f7b39dcde1ba087418fc2e --- scripts/src_util/check_license.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/src_util/check_license.py b/scripts/src_util/check_license.py index bc5a4e1..62f41f4 100644 --- a/scripts/src_util/check_license.py +++ b/scripts/src_util/check_license.py @@ -64,7 +64,7 @@ def checkFileLicense (file): elif license == LICENSE_MULTIPLE: print "%s: contains multiple licenses" % file elif license == LICENSE_UNKNOWN: - print "%s: missing/unknown license" + print "%s: missing/unknown license" % file return license == LICENSE_APACHE2 -- 2.7.4