#!/usr/bin/python

import dsgui
if hasattr(dsgui,'run'):
	dsgui.run()
else:
	from dsgui.dsgui import run
	run()

