#!/usr/bin/env python

import sys

from cuteroll.main import main

try:
    main()
except ValueError as err:
    print(err.args[0], file=sys.stderr)
