#!/usr/bin/python3 -s

"""
 License: Apache License 2.0
"""

import repostatus
import sys

if __name__ == '__main__':
  if sys.version_info[0] < 3:
    raise Exception("Please use Python 3")
  repostatus.main()
