From cb4496afe938f579c4844eaffb1cbfcebe948449 Mon Sep 17 00:00:00 2001 From: Kuba Szymanowski Date: Wed, 17 Aug 2022 14:43:30 +0200 Subject: [PATCH] Allow for searching by the full project name --- STP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STP.py b/STP.py index 90b8519..3176a3c 100644 --- a/STP.py +++ b/STP.py @@ -14,7 +14,7 @@ def _camel_case_split(self, identifier): return [m.group(0) for m in matches] def _splitMatchWords(self, title): - res = [] + res = [title] cam = self._camel_case_split(title) for m in cam: ret = re.split('-|_| |',m)