diff options
author | jiansong <jian.song@easystack.cn> | 2016-08-30 20:06:09 -0700 |
---|---|---|
committer | jiansong <jian.song@easystack.cn> | 2016-09-11 19:58:33 -0700 |
commit | 25a558d9fd8383f99a132dc84f6dda2ec5336807 (patch) | |
tree | 28ceff74b5ea2e834b9cda96123da1010caee877 /install-guide | |
parent | 4512aec2d434eaf4c743bc089e0319cb243ac349 (diff) | |
download | trove-25a558d9fd8383f99a132dc84f6dda2ec5336807.tar.gz |
Update #noqa for out 79 character
Currently has some use # noqa because out 79 - character limit,
in order to conform the pep8 specification, I think we can make
some changes
Change-Id: Ia91ec8175521854e0b413441a2e05a23330aa8c3
Diffstat (limited to 'install-guide')
-rw-r--r-- | install-guide/source/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install-guide/source/conf.py b/install-guide/source/conf.py index 7c8e52a4..2589cd3a 100644 --- a/install-guide/source/conf.py +++ b/install-guide/source/conf.py @@ -74,7 +74,8 @@ release = '0.1' # extracted from git log. # bug_tag: Tag for categorizing the bug. Must be set manually. # These variables are passed to the logabug code via html_context. -giturl = u'http://git.openstack.org/cgit/openstack/trove/tree/install-guide/source' # noqa +giturl = (u'http://git.openstack.org/cgit/openstack/trove/tree/' + 'install-guide/source') git_cmd = "/usr/bin/git log | head -n1 | cut -f2 -d' '" gitsha = os.popen(git_cmd).read().strip('\n') html_context = {"gitsha": gitsha, "bug_tag": bug_tag, |