https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e76a0e43426960687ab5ea9ae526af6c34c6a93e authored by Marcos Caceres on 01 September 2017, 04:44:56 UTC
upateWith() must abort when dup shippingOption ids
Tip revision: e76a0e4
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