#!/usr/bin/python

import sys

sys.path.append('/usr/share/blogtk')

from BloGTK import *

print 'Warning: This command has been deprecated and may be removed in future versions.'
print 'Warning: Please run it as "/usr/bin/blogtk" (all lowercase) instead.'

try:
	blogtk = BloGTK()
	blogtk.main()
except KeyboardInterrupt:
	sys.exit(1)
