diff options
-rwxr-xr-x | README.md | 6 | ||||
-rwxr-xr-x | bot.py | 2 |
2 files changed, 1 insertions, 7 deletions
@@ -36,9 +36,3 @@ sudo dpkg-reconfigure locales | |||
36 | ```bash | 36 | ```bash |
37 | python3 bot.py | 37 | python3 bot.py |
38 | ``` | 38 | ``` |
39 | |||
40 | ## TODO | ||
41 | |||
42 | + Robust error handle | ||
43 | |||
44 | + Use GAE OAuth instead of fetching cookie \ No newline at end of file | ||
@@ -252,6 +252,6 @@ if __name__ == '__main__': | |||
252 | while True: | 252 | while True: |
253 | try: | 253 | try: |
254 | main() | 254 | main() |
255 | except Exception as e: | 255 | except Exception: |
256 | send_message(bot, 'Main Unexpected error' + str(sys.exc_info()[0]) + " Line: " + str(inspect.currentframe().f_lineno), True) | 256 | send_message(bot, 'Main Unexpected error' + str(sys.exc_info()[0]) + " Line: " + str(inspect.currentframe().f_lineno), True) |
257 | time.sleep(3) \ No newline at end of file | 257 | time.sleep(3) \ No newline at end of file |