jdepend: Add commas to mapping tuple

Change-Id: I7f02043b49a2364eccf1f88562eee7d03ec45536
Signed-off-by: Tan Heng Yeow <E0032242@u.nus.edu>
This commit is contained in:
tanhengyeow 2018-09-14 21:38:18 +08:00
parent 4d5397c496
commit 59a9b35827
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)