Ignore the jenkins build failed with D001 Line too long

Sometimes the "api_name" contains many characters. It will cause
Jenkins build failed with the line is too long. Like this patch:
https://review.openstack.org/#/c/443218

Change-Id: I506a58864cb048fb5189e689505697d1b93c6df7
This commit is contained in:
chenxing 2017-03-09 03:52:45 +00:00
parent 6d6f122209
commit 64cd5c1b3c
1 changed files with 2 additions and 1 deletions

View File

@ -107,7 +107,8 @@ def generate_heading(os_command, api_name, title,
os_file.write("The " + os_command + " client is the command-line ")
os_file.write("interface (CLI) for\n")
os_file.write("the " + api_name + " and its extensions.\n\n")
os_file.write("the " + api_name + "\n")
os_file.write("and its extensions.\n\n")
os_file.write("This chapter documents :command:`" + os_command + "` ")
os_file.write("version ``" + version + "``.\n\n")