(todo)
| 1950 | |
| 1951 | |
| 1952 | def create_ical(todo): # pylint: disable=unused-argument |
| 1953 | if ask_yes_no("Do you want to add a Calendar reminder for the close vote time?"): |
| 1954 | c = Calendar() |
| 1955 | e = Event() |
| 1956 | e.name = "Solr %s vote ends" % state.release_version |
| 1957 | e.begin = vote_close_72h_date() |
| 1958 | e.description = "Remember to sum up votes and continue release :)" |
| 1959 | c.events.add(e) |
| 1960 | ics_file = os.path.join(state.get_rc_folder(), 'vote_end.ics') |
| 1961 | with open(ics_file, 'w') as my_file: |
| 1962 | my_file.writelines(c) |
| 1963 | open_file(ics_file) |
| 1964 | return True |
| 1965 | |
| 1966 | |
| 1967 | today = datetime.now(UTC).date() |
nothing calls this directly
no test coverage detected
searching dependent graphs…