fixed small issue in NFO --> writer is named credits in the NFO

This commit is contained in:
Marcel van der Veldt 2015-03-20 01:16:46 +01:00
parent 6e1727dc78
commit 96833b5ef3
1 changed files with 1 additions and 2 deletions

View File

@ -178,9 +178,8 @@ class CreateFiles():
SubElement(root, "imdbnumber").text = item
if people.get("Writer") != None:
credits = SubElement(root, "credits")
for writer in people.get("Writer"):
SubElement(credits, "writer").text = utils.convertEncoding(writer)
SubElement(root, "credits").text = utils.convertEncoding(writer)
if people.get("Director") != None:
for director in people.get("Director"):