swh:1:snp:b37d435721bbd450624165f334724e3585346499
Raw File
Tip revision: 835d19abcdd0a83d704629d7ee3936063fe51924 authored by Ms2ger on 06 October 2016, 12:20:21 UTC
wip
Tip revision: 835d19a
lint
#!/usr/bin/env python
import sys

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

sys.exit(0 if lint.main() == 0 else 1)
back to top