From 22e8d7ee719c8613242ffb8b4ef0cfb4c629d886 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Thu, 6 May 2021 10:35:16 +0200 Subject: [PATCH] (#773) Fix Qt 5.15 only call in Config --- nw/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nw/config.py b/nw/config.py index b2703d77..65436608 100644 --- a/nw/config.py +++ b/nw/config.py @@ -391,7 +391,7 @@ class Config: lngFile = "%s_%s" % (lngBase, lngCode.replace("-", "_")) if lngFile not in self.qtTrans: if qTrans.load(lngFile, lngPath): - logger.debug("Loaded: %s" % qTrans.filePath()) + logger.debug("Loaded: %s" % os.path.join(lngPath, lngFile)) nwApp.installTranslator(qTrans) self.qtTrans[lngFile] = qTrans