Github user MBoustani commented on a diff in the pull request: https://github.com/apache/climate/pull/220#discussion_r36249436 --- Diff: ocw-cli/cli_app.py --- @@ -1138,30 +1080,36 @@ def settings_screen(header): new_start_time = screen.getstr() try: new_start_time = datetime.strptime(new_start_time, '%Y-%m-%d') - new_start_time_int = int("{0}{1}".format(new_start_time.year, new_start_time.month)) - fix_min_time_int = int("{0}{1}".format(fix_min_time.year, fix_min_time.month)) - fix_max_time_int = int("{0}{1}".format(fix_max_time.year, fix_max_time.month)) - all_overlap_end_time_int = int("{0}{1}".format(all_overlap_end_time.year, all_overlap_end_time.month)) - if new_start_time_int < fix_min_time_int \ - or new_start_time_int > fix_max_time_int \ - or new_start_time_int > all_overlap_end_time_int: - note = "Start time has not changed. " + #new_start_time_int = int("{0}{1}".format(new_start_time.year, new_start_time.month)) --- End diff -- This whole block of code I added based on your request before, remember science team requested to just compare year and month for each start and end time, now you took that out? Why ?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---