#!/usr/bin/python2 """script used to run the webserver""" import sys sys.path.append("./photoblaster") from server import Server server = Server() if __name__ == "__main__": server.run_wsgi()