Skip to content

Commit

Permalink
case sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Feb 23, 2015
1 parent f8e301a commit 831671c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions misc/clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down

0 comments on commit 831671c

Please sign in to comment.