MorseTranslator.py: don't sanitize away word spaces
authorAntonio Ospite <ao2@ao2.it>
Wed, 23 Dec 2015 18:26:51 +0000 (19:26 +0100)
committerAntonio Ospite <ao2@ao2.it>
Thu, 24 Dec 2015 12:25:09 +0000 (13:25 +0100)
Don't strip word spaces when sanitizing strings, those spaces may be
part of the original message.

src/savemysugar/MorseTranslator.py

index d52902d..068a0b9 100755 (executable)
@@ -140,8 +140,6 @@ class MorseTranslator(object):
         sanitized = text.lower()
         sanitized = re.sub(r"[^a-z0-9.,:?\'-/()\"=\+@ ]", "", sanitized)
         sanitized = re.sub(r"\s+", " ", sanitized)
-        sanitized = re.sub(r"^\s+", "", sanitized)
-        sanitized = re.sub(r"\s+$", "", sanitized)
         return sanitized
 
     def char_to_signal(self, character):
@@ -163,8 +161,6 @@ class MorseTranslator(object):
         sanitized = re.sub(r"[^\-\.\/]", " ", sanitized)
         sanitized = re.sub(r"\s+", " ", sanitized)
         sanitized = re.sub(r"( ?/ ?)+", " / ", sanitized)
-        sanitized = re.sub(r"^[ /]+", "", sanitized)
-        sanitized = re.sub(r"[ /]+$", "", sanitized)
         return sanitized
 
     def signal_to_character(self, signal):