()
| 79 | |
| 80 | |
| 81 | def help(): |
| 82 | print("\nInvalid command line options. Usage:") |
| 83 | print("\t{0} <year to find> <year to replace>".format(sys.argv[0])) |
| 84 | print("\tExample: {0} 2018 2019\n".format(sys.argv[0])) |
| 85 | sys.exit(1) |
| 86 | |
| 87 | |
| 88 | if __name__ == '__main__': |