Commit 6044b24c authored by Adam Michael's avatar Adam Michael

Make //:protobuf_python have correct __init__.py.

Previously //:protobuf_python set no __init__.py so Bazel created an
empty one. This change makes it use the __init__.py from the repository.
parent 92064a40
...@@ -693,6 +693,7 @@ py_proto_library( ...@@ -693,6 +693,7 @@ py_proto_library(
":python_srcs", ":python_srcs",
"//external:six", "//external:six",
], ],
py_extra_srcs = glob(["python/**/__init__.py"]),
srcs_version = "PY2AND3", srcs_version = "PY2AND3",
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
......
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