#!/usr/bin/env python
##############################################################################
#       Copyright (C) 2010, Joel B. Mohler <joel@kiwistrawberry.us>
#
#  Distributed under the terms of the GNU General Public License (GPL)
#                  http://www.gnu.org/licenses/
##############################################################################
# -*- coding: utf-8 -*-
import pyhacc
from optparse import OptionParser

parser = OptionParser()
parser.add_option("-c", "--conn", dest="conn", default=None, help="Connection String")
(options, args) = parser.parse_args()

if options.conn is None:
	pyhacc.gui()
else:
	pyhacc.gui(conn=options.conn)
