You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classThisWorks(QtGui.QWidget):
def__init__(self, parent=None):
super().__init__(parent)
self.a=self.tr("i'm fine")
classThisFails(QtGui.QWidget):
def__init__(self, parent=None):
super().__init__(parent)
self.b='''a long text withmore them one line'''# <---- a single space before 'm' solves the problemself.a=self.tr("i'm sad")
the .TS generated for the second class will have no identifier:
the .TS generated for the second class will have no identifier:
The text was updated successfully, but these errors were encountered: