Skip to content

Commit

Permalink
SeqFeature: Fix a typo in the ValueError message
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Blin <kblin@biosustain.dtu.dk>
  • Loading branch information
kblin committed Jul 20, 2015
1 parent 9bfda7a commit dc6adb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/SeqFeature.py
Expand Up @@ -364,7 +364,7 @@ def extract(self, parent_sequence):
Note - currently only sub-features of type "join" are supported.
"""
if self.location is None:
raise ValueError("The feature's location is None. Check the "
raise ValueError("The feature's .location is None. Check the "
"sequence file for a valid location.")
return self.location.extract(parent_sequence)

Expand Down

0 comments on commit dc6adb0

Please sign in to comment.