#!/usr/bin/python3

from sys import stderr, exit

from pyfiglet import main, FontNotFound

try:
    main()
except FontNotFound:
    stderr.write('Font not found or not compatible. '
        'Please install the toilet-fonts or figlet package for fonts.\n'
        "Note that not all toilet's .tlf fonts are compatible.\n")
    exit(1)
