Ticket #13044: 0001-Remove-unicoding-an-already-unicoded-value.patch

File 0001-Remove-unicoding-an-already-unicoded-value.patch, 937 bytes (added by angela.schmid@…, 7 years ago)
  • mythtv/bindings/python/MythTV/dataheap.py

    From 76198868dea468ec10671fa9a6947d508a225990 Mon Sep 17 00:00:00 2001
    From: angelaschmid <angela.schmid@wolke7.net>
    Date: Mon, 22 May 2017 08:39:25 +0200
    Subject: [PATCH] Remove unicoding an already unicoded value
    
    ---
     mythtv/bindings/python/MythTV/dataheap.py | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/mythtv/bindings/python/MythTV/dataheap.py b/mythtv/bindings/python/MythTV/dataheap.py
    index 859e060112..6a907bb7d8 100644
    a b class Video( CMPVideo, VideoSchema, DBDataWrite ): 
    10571057        # pull actors
    10581058        for actor in [person for person in metadata.people \
    10591059                                  if person.job=='Actor']:
    1060             self.cast.add(unicode(actor.name))
     1060            self.cast.add(actor.name)
    10611061
    10621062        # pull genres
    10631063        for category in metadata.categories: