projects
/
grpc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64f98c1
)
[PATCH] Use != with literals
author
Lidi Zheng
<lidiz@google.com>
Tue, 29 Sep 2020 21:44:59 +0000
(14:44 -0700)
committer
Andreas Henriksson
<andreas@fatal.se>
Wed, 13 Jan 2021 21:53:15 +0000
(21:53 +0000)
Gbp-Pq: Name
9e0b427893b65b220faf8a31a6afdc67f6f41364
.patch
src/python/grpcio/commands.py
patch
|
blob
|
history
diff --git
a/src/python/grpcio/commands.py
b/src/python/grpcio/commands.py
index b9106826b5daaa0d0cbfd2e3f9f7565aaf133cc2..46b9bca83ea4a2d21cb5318384c51bd9cac7064b 100644
(file)
--- a/
src/python/grpcio/commands.py
+++ b/
src/python/grpcio/commands.py
@@
-99,7
+99,7
@@
class SphinxDocumentation(setuptools.Command):
target_dir = os.path.join(GRPC_STEM, 'doc', 'build')
exit_code = sphinx.cmd.build.build_main(
['-b', 'html', '-W', '--keep-going', source_dir, target_dir])
- if exit_code
is not
0:
+ if exit_code
!=
0:
raise CommandError(
"Documentation generation has warnings or errors")