More changes for Python 3

This commit is contained in:
kounch 2019-03-03 20:27:46 +01:00
parent 63932f9bf8
commit f893cadfbe

View File

@ -32,7 +32,7 @@ class ComicBookInfo:
def metadataFromString( self, string ): def metadataFromString( self, string ):
cbi_container = json.loads( unicode(string, 'utf-8') ) cbi_container = json.loads( str(string, 'utf-8') )
metadata = GenericMetadata() metadata = GenericMetadata()