diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2023-01-11 09:17:30 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2023-01-11 09:17:30 +0100 |
commit | 3bccb1539f74513cee0aa831d81da8cec92aae1b (patch) | |
tree | bf3c0e6876c6775cf92ec021595e211b6935db1b | |
parent | 729af68a98f5ecc6ebc07bf162ac165df71340e4 (diff) |
Improve error message
-rwxr-xr-x | planner_generator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/planner_generator.py b/planner_generator.py index e66fc5f..f2c6408 100755 --- a/planner_generator.py +++ b/planner_generator.py @@ -273,7 +273,8 @@ class EphemerismonthGenerator(MonthGenerator): try: import astral except ImportError: - print("Printing a month planner with ephemeris requires suntime.") + print("Printing a month planner with ephemeris requires" + "the astral library.") sys.exit(1) if not self.latitude or not self.longitude or not self.timezone: |