swh:1:snp:b37d435721bbd450624165f334724e3585346499
Raw File
Tip revision: 15b2fb016de4e0cba87495a31bac3a20a5ab9df5 authored by Robert Ma on 05 April 2018, 18:43:39 UTC
Fix the unit test for affected tests
Tip revision: 15b2fb0
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