#!/usr/bin/env python

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