diff --git a/util.py b/util.py index 39e044e77..e44e62bcd 100644 --- a/util.py +++ b/util.py @@ -55,12 +55,6 @@ def find_keys(dic, val): """return the key of dictionary dic given the value""" return [k for k, v in dic.iteritems() if v == val] -class Message(): - def __init__(self, msg=''): - self.text = msg - def add(self, text): - self.text += "
%s" % text - def render_template(template='login_nav', **kwargs): for key in ['sidebar_left', 'sidebar_right', 'main', 'js', 'nav', 'css',