From de7d7717c39655fd78c20b1299c7f85ef7ea86ff Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Mon, 29 Aug 2016 15:00:05 -0700 Subject: [PATCH] Fix incorrect flag syntax in regen.py. This is a regression from #13079. --- ports/geckolib/binding_tools/regen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/geckolib/binding_tools/regen.py b/ports/geckolib/binding_tools/regen.py index 98965e6facf..4745a6e1800 100755 --- a/ports/geckolib/binding_tools/regen.py +++ b/ports/geckolib/binding_tools/regen.py @@ -321,7 +321,7 @@ def build(objdir, target_name, debug, debugger, kind_name=None, flags.append("{}Strong".format(ty)) flags.append("--raw-line") flags.append("pub type {0}Strong = ::sugar::refptr::Strong<{0}>;".format(ty)) - flags.append("-blacklist-type") + flags.append("--blacklist-type") flags.append("{}Borrowed".format(ty)) flags.append("--raw-line") flags.append("pub type {0}Borrowed<'a> = ::sugar::refptr::Borrowed<'a, {0}>;".format(ty))