diff options
author | Noah Eisen <ncteisen@google.com> | 2017-11-13 17:16:56 -0800 |
---|---|---|
committer | Noah Eisen <ncteisen@google.com> | 2017-11-13 17:16:56 -0800 |
commit | 9268703dc974f35964e4b5c466f292b6300c0225 (patch) | |
tree | 5f33b03799c5d9b7d3012d0c5f7c84bdfb469af8 /src/python | |
parent | b945cc443132c9f9797f1215e2d60bb051c07366 (diff) | |
parent | b0bad8f3864dc9c8745736fe68efe513b2b84932 (diff) |
Merge branch 'master' of https://github.com/grpc/grpc into inline-closure
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/grpcio_reflection/reflection_commands.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/grpcio_reflection/reflection_commands.py b/src/python/grpcio_reflection/reflection_commands.py index e2b1aa015b..6f91f6b875 100644 --- a/src/python/grpcio_reflection/reflection_commands.py +++ b/src/python/grpcio_reflection/reflection_commands.py @@ -19,7 +19,7 @@ import shutil import setuptools ROOT_DIR = os.path.abspath(os.path.dirname(os.path.abspath(__file__))) -HEALTH_PROTO = os.path.join( +REFLECTION_PROTO = os.path.join( ROOT_DIR, '../../proto/grpc/reflection/v1alpha/reflection.proto') @@ -36,9 +36,9 @@ class CopyProtoModules(setuptools.Command): pass def run(self): - if os.path.isfile(HEALTH_PROTO): + if os.path.isfile(REFLECTION_PROTO): shutil.copyfile( - HEALTH_PROTO, + REFLECTION_PROTO, os.path.join(ROOT_DIR, 'grpc_reflection/v1alpha/reflection.proto')) |