#!/usr/bin/env python

from pyppd import runner
try:
    runner.run()
except (IOError, KeyboardInterrupt):
    # We don't want neither IOError nor KeyboardInterrupt throwing a traceback
    # into stdout.
    pass
