From 61421de45630ce5c410346060b6e8a84ef346a32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Lind=C3=A9n?= Date: Fri, 10 Apr 2015 11:16:22 +0200 Subject: [PATCH] fix a typo in _configure_error in the AutoOption class --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 83d1e68d..6111a616 100644 --- a/wscript +++ b/wscript @@ -273,7 +273,7 @@ class AutoOption: print_error('%s requires the package %s, but it cannot be found.' % (self.option, string)) for program in self.programs_not_found: - print_error('%s requires the %s program, but it cannot be found.', (self.option, program)) + print_error('%s requires the %s program, but it cannot be found.' % (self.option, program)) if not self.check_hook_found: self.check_hook_error(conf)