Changed a typo in comment

This commit is contained in:
Zhaorong Ma
2014-01-29 11:27:45 -05:00
committed by peterjc
parent 2f6c288fcc
commit 942e98bf20

View File

@ -201,7 +201,7 @@ class InsdcScanner(object):
while line[:self.FEATURE_QUALIFIER_INDENT] == self.FEATURE_QUALIFIER_SPACER \
or line.rstrip() == "": # cope with blank lines in the midst of a feature
#Use strip to remove any harmless trailing white space AND and leading
#white space (e.g. out of spec files with too much intentation)
#white space (e.g. out of spec files with too much indentation)
feature_lines.append(line[self.FEATURE_QUALIFIER_INDENT:].strip())
line = self.handle.readline()
features.append(self.parse_feature(feature_key, feature_lines))