Skip to content

Commit

Permalink
Merge pull request #59 from jamlamberti/fix-exception-str
Browse files Browse the repository at this point in the history
Fix up exception value and typo in README
  • Loading branch information
astrojuanlu authored Oct 15, 2019
2 parents e05e847 + 0ea404c commit 2c42e5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Orbit Predictor
Orbit Predictor is a Python library to propagate orbits of Earth-orbiting objects (satellites, ISS,
Santa Claus, etc) using `TLE (Two-Line Elements set) <https://en.wikipedia.org/wiki/Two-line_element_set>`_

Al the hard work is done by Brandon Rhodes implementation of
All the hard work is done by Brandon Rhodes implementation of
`SGP4 <https://github.com/brandon-rhodes/python-sgp4>`_.

We can say *Orbit predictor* is kind of a "wrapper" for the python implementation of SGP4
Expand Down
2 changes: 1 addition & 1 deletion orbit_predictor/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _get_tle(self, sate_id, date):
data = fd.read()
lines = data.split("\n")
if not lines[0] == sate_id:
raise LookupError("Stored satellite id not")
raise LookupError("Stored satellite id not found")
return tuple(lines[1:3])


Expand Down

0 comments on commit 2c42e5a

Please sign in to comment.