From 6c5e529129cd520e535882db93c978528ad3bcf1 Mon Sep 17 00:00:00 2001 From: Bill Dengler Date: Wed, 6 May 2015 12:47:46 -0400 Subject: [PATCH] More fixes. --- src/wxUI/dialogs/configuration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wxUI/dialogs/configuration.py b/src/wxUI/dialogs/configuration.py index fb0cdd97..54b4dd1a 100644 --- a/src/wxUI/dialogs/configuration.py +++ b/src/wxUI/dialogs/configuration.py @@ -131,7 +131,7 @@ class other_buffers(wx.Panel): return False if current <= 0: output.speak("The buffer is already at the top of the list.",True) - return false + return False #not implemented def move_down(self, *args, **kwargs): current = self.buffers.get_selected() @@ -143,7 +143,7 @@ class other_buffers(wx.Panel): return False if current >= self.buffers.get_count(): output.speak("The buffer is already at the bottom of the list.",True) - return false + return False #not implemented def get_event(self, ev):