From: W. Trevor King Date: Tue, 5 Feb 2013 17:19:18 +0000 (-0500) Subject: Remove debugging print(self.stack) from UserInterface.get_question() X-Git-Tag: v0.1~58 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c4591f5c590fd8c005c17a6d5842a897efc81e38;p=quizzer.git Remove debugging print(self.stack) from UserInterface.get_question() --- diff --git a/quizzer/ui/__init__.py b/quizzer/ui/__init__.py index 3a1c37f..5bbb214 100644 --- a/quizzer/ui/__init__.py +++ b/quizzer/ui/__init__.py @@ -20,7 +20,6 @@ class UserInterface (object): def get_question(self): if self.stack: - print(self.stack) return self.stack.pop(0) def process_answer(self, question, answer):