Edit note dialog fixes.
[ardour.git] / tools / bug_tool / ClientCookie / _Debug.py
1 import ClientCookie
2
3 def debug(text):
4     if ClientCookie.CLIENTCOOKIE_DEBUG: _debug(text)
5
6 def _debug(text, *args):
7     if args:
8         text = text % args
9     ClientCookie.DEBUG_STREAM.write(text+"\n")