Full logs:
2016-08-02 19:51:38 Traceback (most recent call last):
2016-08-02 19:51:38 File "/bin/user_wsgi_wrapper.py", line 154, in call
2016-08-02 19:51:38
2016-08-02 19:51:38 app_iterator = self.app(environ, start_response)
2016-08-02 19:51:38 TypeError
2016-08-02 19:51:38 :
2016-08-02 19:51:38 init() takes exactly 2 arguments (3 given)
2016-08-02 19:51:38
I'm guessing something is wrong with my app class, but it works locally. I set the project home and imported the right class in the config file. Any help would be appreciated!
class Pogom(Flask):
def __init__(self, import_name, **kwargs):
super(Pogom, self).__init__(import_name, **kwargs)