Commit 06ce127a authored by Samuel Attard's avatar Samuel Attard Committed by Commit Bot

flip order of python imports to fix module import error

On some windows machines we were seeing errors
"ImportError: No module named name_style_converter"

This error appears to be caused by the strange interactions in module
imports in generate_bindings.py, potentially some kind of circular
dependency.  However, just changing the order of these imports fixes
the issue.

Change-Id: Icf0a6f36db726ffa25dbbc46fe41b8d8d09f2f5c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070668Reviewed-by: default avatarKouhei Ueno <kouhei@chromium.org>
Commit-Queue: Jeremy Apthorp <jeremya@chromium.org>
Cr-Commit-Position: refs/heads/master@{#744076}
parent e723c6de
......@@ -9,8 +9,8 @@ Runs the bindings code generator for the given tasks.
import optparse
import sys
import bind_gen
import web_idl
import bind_gen
def parse_options():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment