diff options
-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: |