summaryrefslogtreecommitdiffstats
path: root/fedora-business-cards
blob: f59725d004aecaa35162c69d28e8ea53477ce2ba (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
import sys
try:
    from fedora_business_cards import frontend
    frontend.cmdline()
except ImportError:
    print >> sys.stderr, """\
There was a problem importing the fedora_business_cards module. Please make sure
that you have fedora-business-cards installed properly.
"""
    sys.exit(1)