Revision a39e0345491427d036bae69488b72661e11057f6 authored by Simon Pieters on 24 April 2018, 20:32:47 UTC, committed by L. David Baron on 24 April 2018, 20:32:47 UTC
1 parent ff863cd
Raw File
serve.py
import sys
import logging

try:
    from tools.serve import serve
except ImportError:
    logging.error("tools.serve not found.  Did you forget to run "
                  '"git submodule update --init --recursive"?')
    sys.exit(2)

def main():
    serve.main()
back to top