Make Jenkins Job Builder pass pyflakes checks.

One import was not used and another was missing.

Change-Id: I2eed26e445e4be1e674df89d29fb5b22dfa9dec4
This commit is contained in:
Clark Boylan 2012-09-17 14:45:03 -07:00
parent 78c083f590
commit 1755d8cce7
1 changed files with 2 additions and 2 deletions

View File

@ -21,9 +21,9 @@
import re
from sphinx.ext.autodoc import Documenter, FunctionDocumenter
from sphinx.domains.python import PyModulelevel
from sphinx.domains.python import PyModulelevel, _pseudo_parse_arglist
from sphinx import addnodes
from sphinx.locale import l_, _
from sphinx.locale import _
yaml_sig_re = re.compile('yaml:\s*(.*)')