File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,3 @@ bundles
10
10
.eggs
11
11
dist
12
12
** /* .egg-info
13
- tester.py
Original file line number Diff line number Diff line change @@ -186,11 +186,11 @@ def _parse_sentence(self):
186
186
sentence = sentence [:- 3 ]
187
187
# Parse out the type of sentence (first string after $ up to comma)
188
188
# and then grab the rest as data within the sentence.
189
- delineator = sentence .find (',' )
190
- if delineator == - 1 :
189
+ delimiter = sentence .find (',' )
190
+ if delimiter == - 1 :
191
191
return None # Invalid sentence, no comma after data type.
192
- data_type = sentence [1 :delineator ]
193
- return (data_type , sentence [delineator + 1 :])
192
+ data_type = sentence [1 :delimiter ]
193
+ return (data_type , sentence [delimiter + 1 :])
194
194
195
195
def _parse_gpgll (self , args ):
196
196
data = args .split (',' )
You can’t perform that action at this time.
0 commit comments