Skip to content

Commit 2c42e5a

Browse files
authored
Merge pull request #59 from jamlamberti/fix-exception-str
Fix up exception value and typo in README
2 parents e05e847 + 0ea404c commit 2c42e5a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Orbit Predictor
1010
Orbit Predictor is a Python library to propagate orbits of Earth-orbiting objects (satellites, ISS,
1111
Santa Claus, etc) using `TLE (Two-Line Elements set) <https://en.wikipedia.org/wiki/Two-line_element_set>`_
1212

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

1616
We can say *Orbit predictor* is kind of a "wrapper" for the python implementation of SGP4

orbit_predictor/sources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _get_tle(self, sate_id, date):
102102
data = fd.read()
103103
lines = data.split("\n")
104104
if not lines[0] == sate_id:
105-
raise LookupError("Stored satellite id not")
105+
raise LookupError("Stored satellite id not found")
106106
return tuple(lines[1:3])
107107

108108

0 commit comments

Comments
 (0)