mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
THRIFT-412. python: Fix some syntacticaly-incorrect code generation
r758558 introduced a but that caused some of the generated docstrings to be indented incorrectly, resulting in syntactically invalid code. This commit fixes the indentation. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@760118 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f0377e2ffe
commit
64f87529db
@ -929,9 +929,11 @@ void t_py_generator::generate_service_interface(t_service* tservice) {
|
||||
for (f_iter = functions.begin(); f_iter != functions.end(); ++f_iter) {
|
||||
f_service_ <<
|
||||
indent() << "def " << function_signature_if(*f_iter) << ":" << endl;
|
||||
indent_up();
|
||||
generate_python_docstring(f_service_, (*f_iter));
|
||||
f_service_ <<
|
||||
indent() << " pass" << endl << endl;
|
||||
indent() << "pass" << endl << endl;
|
||||
indent_down();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user