From 7c682cc3945538022900504703f0d5c697777566 Mon Sep 17 00:00:00 2001 From: Intel1 <25161862+Intel11@users.noreply.github.com> Date: Thu, 19 Jul 2018 10:45:18 -0500 Subject: [PATCH] xbmc_info_window: fix error update language --- plugin.video.alfa/platformcode/xbmc_info_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.video.alfa/platformcode/xbmc_info_window.py b/plugin.video.alfa/platformcode/xbmc_info_window.py index b7efce30..557bff6c 100755 --- a/plugin.video.alfa/platformcode/xbmc_info_window.py +++ b/plugin.video.alfa/platformcode/xbmc_info_window.py @@ -2,7 +2,7 @@ import xbmcgui from core.tmdb import Tmdb -from platformcode import logger +from platformcode import config, logger ID_BUTTON_CLOSE = 10003 ID_BUTTON_PREVIOUS = 10025 @@ -217,7 +217,7 @@ class InfoWindow(xbmcgui.WindowXMLDialog): self.getControl(10009).setLabel(self.result.get("language", "N/A")) self.getControl(100010).setLabel(config.get_localized_string(60380)) self.getControl(100011).setLabel(self.result.get("puntuacion", "N/A")) - self.getControl(100012).setLabel(config.get_localized_string(60382) + self.getControl(100012).setLabel(config.get_localized_string(60382)) self.getControl(100013).setLabel(self.result.get("genre", "N/A")) if self.result.get("season"):