#!/usr/bin/env python

import sys

from tapconverter import nose2tap, ParseException

try:
    nose2tap(sys.stdin, sys.stdout)
except ParseException, e:
    print >> sys.stderr, e
    sys.exit(1)
