#!/usr/bin/env python # coding: utf-8 """ See ABOUT :todo: replace print statements with a debug system """ #: Use this in GUI for "about" dialogs ABOUT = """ Chatwisted A network environment for easy and fast developing of little network applications. Made with Twisted and Tkinter. (cc) by Julian Habrock, 31.1.09-[now?] some rights reserved (cc by-nc-sa) more information at bytemuehle.de """ DEBUG = 0 def debug(msg, level): if level <= DEBUG: print msg