Less logging

This commit is contained in:
tomkat83 2017-05-07 16:21:19 +02:00
parent 9378a8eb89
commit 192c6e2e9a
1 changed files with 0 additions and 8 deletions

View File

@ -1,21 +1,13 @@
# -*- coding: utf-8 -*-
###############################################################################
import logging
from xbmcgui import ListItem
###############################################################################
log = logging.getLogger("PLEX."+__name__)
###############################################################################
def convert_PKC_to_listitem(PKC_listitem):
"""
Insert a PKC_listitem and you will receive a valid XBMC listitem
"""
data = PKC_listitem.data
log.debug('data is: %s' % data)
listitem = ListItem(label=data.get('label'),
label2=data.get('label2'),
path=data.get('path'))