From 9d1cae38b5bb10dd5176a0ac6632fe74e675d266 Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Thu, 7 Nov 2013 01:20:34 +0100 Subject: [PATCH] Fixed function call typo --- windows.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/windows.py b/windows.py index d7b67e9..6210268 100644 --- a/windows.py +++ b/windows.py @@ -32,9 +32,10 @@ class QuestionWindow(QtGui.QDialog): qlabel = None if self.question["Type"] == "Text": - qlabel = self.mkQuestionLabel(self.question["Question"]) + qlabel = self._mkQuestionLabel(self.question["Question"]) + print(self.question["Question"]) elif self.question["Type"] == "Music": - qlabel = self.mkQuestionLabel("Listen...") + qlabel = self._mkQuestionLabel("Listen...") elif self.question["Type"] == "Image": qlabel = QtGui.QLabel() pixmap = QtGui.QPixmap()