Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Speak.activity
diff options
context:
space:
mode:
Diffstat (limited to 'Speak.activity')
-rw-r--r--Speak.activity/voice.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Speak.activity/voice.py b/Speak.activity/voice.py
index a3bb1c6..fda72dc 100644
--- a/Speak.activity/voice.py
+++ b/Speak.activity/voice.py
@@ -101,10 +101,10 @@ def defaultVoice():
def fit(a,b):
"Compare two language ids to see if they are similar."
- as = re.split(r'[^a-z]+', a.lower())
+ as_ = re.split(r'[^a-z]+', a.lower())
bs = re.split(r'[^a-z]+', b.lower())
- for count in range(0, min(len(as),len(bs))):
- if as[count] != bs[count]:
+ for count in range(0, min(len(as_),len(bs))):
+ if as_[count] != bs[count]:
count -= 1
break
return count