diff -r 3433df0d6ae3 -r cf7e02ee3db4 gmyth-stream/server/0.2/lib/utils.py --- a/gmyth-stream/server/0.2/lib/utils.py Tue May 15 18:25:19 2007 +0100 +++ b/gmyth-stream/server/0.2/lib/utils.py Mon Aug 20 19:03:06 2007 +0100 @@ -160,6 +160,10 @@ # getHTML +def _create_html_item(opt): + return "<li>%s</li>\n" % opt +# _create_html_item + def progress_bar(log, value, max, barsize): chars = int(value * barsize / float(max)) percent = int((value / float(max)) * 100)