(date)
| 56 | |
| 57 | |
| 58 | def contribute(date): |
| 59 | with open(os.path.join(os.getcwd(), 'README.md'), 'a') as file: |
| 60 | file.write(message(date) + '\n\n') |
| 61 | run(['git', 'add', '.']) |
| 62 | run(['git', 'commit', '-m', '"%s"' % message(date), |
| 63 | '--date', date.strftime('"%Y-%m-%d %H:%M:%S"')]) |
| 64 | |
| 65 | |
| 66 | def run(commands): |