So I was checking at the logs of my app and i got the following error:
2017-11-20 11:33:41,786: Starting new HTTP connection (1): proxy.server
2017-11-20 11:33:41,797: [2017-11-20 11:33:41,794] ERROR in app: Exception on / [GET]
2017-11-20 11:33:41,797: Traceback (most recent call last):
2017-11-20 11:33:41,798: File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1988, in wsgi_app
2017-11-20 11:33:41,798: response = self.full_dispatch_request()
2017-11-20 11:33:41,798: File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1641, in full_dispatch_request
2017-11-20 11:33:41,798: rv = self.handle_user_exception(e)
2017-11-20 11:33:41,798: File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1544, in handle_user_exception
2017-11-20 11:33:41,799: reraise(exc_type, exc_value, tb)
2017-11-20 11:33:41,799: File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1639, in full_dispatch_request
2017-11-20 11:33:41,799: rv = self.dispatch_request()
2017-11-20 11:33:41,799: File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1625, in dispatch_request
2017-11-20 11:33:41,799: return self.view_functionsrule.endpoint
2017-11-20 11:33:41,800: File "/home/akulchhillar3007/mysite/main.py", line 15, in hello_world
2017-11-20 11:33:41,800: tweet = str(z[0]) + " " + "#shnizrthebot"
2017-11-20 11:33:41,800: IndexError: list index out of range
2017-11-20 11:33:41,794: Exception on / [GET]#012Traceback (most recent call last):#012 File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1988, in wsgi_app#012 response = self.full_dispatch_request()#012 File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1641, in full_dispatch_request#012 rv = self.handle_user_exception(e)#012 File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1544, in handle_user_exception#012 reraise(exc_type, exc_value, tb)#012 File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1639, in full_dispatch_request#012 rv = self.dispatch_request()#012 File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1625, in dispatch_request#012 return self.view_functionsrule.endpoint#012 File "/home/akulchhillar3007/mysite/main.py", line 15, in hello_world#012 tweet = str(z[0]) + " " + "#shnizrthebot"#012IndexError: list index out of range
I don't get it. When the app is run on my laptop there is no error of list index out of range.
But here I get this error