From ecf22495365255bd0bda1d0d12ee2fa4f52dab5e Mon Sep 17 00:00:00 2001 From: Eklavya Sharma Date: Sun, 24 Jul 2016 19:13:28 +0530 Subject: [PATCH] tools/check-templates: Set modified's default to False. Set default value of options.modified to False. --- tools/check-templates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-templates b/tools/check-templates index 427c7872ea..9369d22b28 100755 --- a/tools/check-templates +++ b/tools/check-templates @@ -182,7 +182,7 @@ def get_html_tag(text, i): def check_our_files(): parser = optparse.OptionParser() parser.add_option('--modified', '-m', - action='store_true', + action='store_true', default=False, help='Only check modified files') (options, _) = parser.parse_args()