#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from __future__ import print_function

import os
import sys

here = sys.path[0]
if here != '/usr/bin':
    sys.path[0] = os.path.dirname(here)

from compose_utils import list

if __name__ == '__main__':
    try:
        list.run()
    except list.BadUsage as exc:
        print(str(exc), file=sys.stderr)
        sys.exit(1)
