Merge "jdepend: Add commas to mapping tuple"

This commit is contained in:
Zuul 2018-09-16 18:51:26 +00:00 committed by Gerrit Code Review
commit 8773289f17
1 changed files with 3 additions and 1 deletions

View File

@ -253,7 +253,9 @@ def jdepend(registry, xml_parent, data):
jdepend = XML.SubElement(
xml_parent,
'hudson.plugins.jdepend.JDependRecorder')
mapping = [('file', 'configuredJDependFile', None)]
mapping = [
('file', 'configuredJDependFile', None),
]
helpers.convert_mapping_to_xml(jdepend, data, mapping, fail_required=True)