diff --git a/src/location.py b/src/location.py index 56190a3..716d73a 100644 --- a/src/location.py +++ b/src/location.py @@ -95,7 +95,9 @@ def __tcp_read(self): buf += data while buf.find('\n') != -1: line, buf = buf.split('\n', 1) - yield line + pos = line.find('$') + if pos != -1 and pos + 1 < len(line): + yield line[pos + 1:] if self._raw: line = limit_to_ascii(line) post_event(self._notify, EventThread(Event.LOC_RAW, diff --git a/src/version-timestamp b/src/version-timestamp index 58bf0e5..64e0e1e 100644 --- a/src/version-timestamp +++ b/src/version-timestamp @@ -1 +1 @@ -1439141776 \ No newline at end of file +1439989411 \ No newline at end of file