From 3c46ae7a7c23b8c5ccc4eecee20ea8d724863d5b Mon Sep 17 00:00:00 2001 From: Gareth Halfacree Date: Thu, 11 Sep 2014 16:45:21 +0100 Subject: [PATCH] Capitalised the label to match gedit style --- wordcount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordcount.py b/wordcount.py index a8a1e15..d6a7bd4 100644 --- a/wordcount.py +++ b/wordcount.py @@ -57,5 +57,5 @@ def on_document_changed(self, doc): def update_label(self, doc): """update the plugins status bar label""" txt = get_text(doc) - msg = 'words: {0}'.format(len(WORD_RE.findall(txt))) + msg = 'Words: {0}'.format(len(WORD_RE.findall(txt))) self._label.set_text(msg)