From 831671c3db545004e71e014c2a27cba538f2fe14 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 22 Feb 2015 18:52:53 -0800 Subject: [PATCH] case sensitivity --- misc/clipboard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/clipboard.py b/misc/clipboard.py index 19690263..f5969ef2 100644 --- a/misc/clipboard.py +++ b/misc/clipboard.py @@ -28,9 +28,9 @@ def strip(self, text, trailing): def copy_text(self, text): """ Copies the specified text into the clipboard. """ - text = text.strip() - text = self.strip(text, "(FIX)") - text = self.strip(text, "(FIXED)") + text = text.lower().strip() + text = self.strip(text, "(fix)") + text = self.strip(text, "(fixed)") self.tkroot.clipboard_clear() self.tkroot.clipboard_append(text.lower())