Skip to content

Commit

Permalink
Put tvdb id in <tvdbid> in XBMC nfos rather than <id>
Browse files Browse the repository at this point in the history
  • Loading branch information
midgetspy committed Nov 19, 2010
1 parent 2398915 commit b471f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/metadata/xbmc.py
Expand Up @@ -97,7 +97,7 @@ def _show_data(self, show_obj):
if myShow["contentrating"] != None:
mpaa.text = myShow["contentrating"]

tvdbid = etree.SubElement(tv_node, "id")
tvdbid = etree.SubElement(tv_node, "tvdbid")
if myShow["id"] != None:
tvdbid.text = myShow["id"]

Expand Down

0 comments on commit b471f54

Please sign in to comment.