Skip to content

Commit

Permalink
Fix incorrect flag syntax in regen.py.
Browse files Browse the repository at this point in the history
This is a regression from #13079.
  • Loading branch information
bholley committed Aug 29, 2016
1 parent 7ebdf98 commit de7d771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/geckolib/binding_tools/regen.py
Expand Up @@ -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))
Expand Down

0 comments on commit de7d771

Please sign in to comment.