From c2283ed1b29855700853bfcb0bb9b673854c097b Mon Sep 17 00:00:00 2001 From: Jiawei Shao Date: Fri, 21 Sep 2018 06:55:25 +0000 Subject: [PATCH] Fix a typo in main.py This patch fixes a typo "false" in main.py. The right token should be "False". Change-Id: Ic56f6f3290b30ce2dd56dbe1ce4c31821b981723 Reviewed-on: https://dawn-review.googlesource.com/1560 Commit-Queue: Jiawei Shao Reviewed-by: Corentin Wallez --- generator/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/main.py b/generator/main.py index ef21efa920..37edbb2239 100644 --- a/generator/main.py +++ b/generator/main.py @@ -131,7 +131,7 @@ def link_object(obj, types): arg.length = "constant" arg.constant_length = 1 else: - assert(false) + assert(False) elif a['length'] == 'strlen': arg.length = 'strlen' else: