fix wsgiapp loading

This commit is contained in:
benoitc 2013-08-27 23:25:16 +02:00
parent b6af364c79
commit 4a2eaf202c

View File

@ -59,7 +59,7 @@ class WSGIApplication(Application):
if self.cfg.paste is not None:
return self.load_pasteapp()
else:
return self.load_wsgiapp
return self.load_wsgiapp()
def run():